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.
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
https://api.sylor.orzatty.comGET /v1/models,POST /v1/chat/completionsAuthorization: Bearer <api_key>stream: true→ SSE,stream: false→ JSON)Available Models
sylor-prosylor-flashRunning It
Non-streaming:
Streaming (SSE):
Model list:
curl -X GET https://api.sylor.orzatty.com/v1/models \ -H "Authorization: Bearer <your-api-key>"Parameters
modelsylor-proorsylor-flash. Defaults tosylor-pro.messages{role, content}.streamtrue(SSE) orfalse(JSON).temperaturemax_tokenstop_pObtaining an Evaluation Key
If you need an evaluation API key for testing or integration, please contact us privately:
ceo@orzatty.comWe will provide the key securely — it is not shared publicly.
Notes
choices[].message.content(non-streaming) ordelta.contentchunks (streaming).finish_reason: "stop"when done.0for 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.