Skip to content

[Model Submission] Sylor Pro / Sylor Flash — OpenAI-Compatible API #3917

Description

@orzatty

Model Submission: Sylor Pro / Sylor Flash

Sylor is an AI assistant by Orzatty™ with frontier-scale reasoning and lightning-fast chat modes. We would like to submit Sylor to the Chatbot Arena for evaluation.


API Spec

Field Value
Base URL https://api.sylor.orzatty.com
Protocol OpenAI API v1 compatible
Endpoints GET /v1/models, POST /v1/chat/completions
Auth Authorization: Bearer <api_key>
Streaming Supported (stream: true → SSE, stream: false → JSON)
Context Window 262,144 tokens (Pro)

Available Models

Model ID Name Description
sylor-pro Sylor S1 Pro Deep reasoning, coding, analysis, multimodal. Context 262k.
sylor-flash Sylor S1 Flash Fast, concise answers for everyday tasks.

Running It

Non-streaming:

curl -X POST https://api.sylor.orzatty.com/v1/chat/completions \
  -H "Authorization: Bearer <your-api-key>" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "sylor-pro",
    "messages": [{"role": "user", "content": "Hello!"}],
    "stream": false
  }'

Streaming (SSE):

curl -N -X POST https://api.sylor.orzatty.com/v1/chat/completions \
  -H "Authorization: Bearer <your-api-key>" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "sylor-pro",
    "messages": [{"role": "user", "content": "Hello!"}],
    "stream": true
  }'

Model list:

curl -X GET https://api.sylor.orzatty.com/v1/models \
  -H "Authorization: Bearer <your-api-key>"

Parameters

Field Description
model sylor-pro or sylor-flash. Defaults to sylor-pro.
messages Array of {role, content}.
stream true (SSE) or false (JSON).
temperature Ignored.
max_tokens Ignored.
top_p Ignored.

Obtaining an Evaluation Key

If you need an evaluation API key for testing or integration, please contact us privately:

  • Email: ceo@orzatty.com
  • Discord: Ask in the Sylor channel (DM an admin)

We will provide the key securely — it is not shared publicly.

Notes

  • Responses include choices[].message.content (non-streaming) or delta.content chunks (streaming).
  • finish_reason: "stop" when done.
  • Usage field returns 0 for token counts (counting not exposed yet).

Thanks for considering Sylor for Chatbot Arena! If you need any adjustments to the API format, let us know.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions