uttapen

Palmyra X5 vs Aion-3.0

Both sit behind the same key and the same code on uttapen — the only thing that changes is the model string, so you can run each of them against your own workload without touching anything else. On cost, Palmyra X5 comes out about 1.4× cheaper.

FeaturePalmyra X5Aion-3.0
ProviderWriterAion Labs
Model idwriter/palmyra-x5aion-labs/aion-3.0
Context1,040,000 tokens131,072 tokens
Max output8,192 tokens32,768 tokens
Input / 1M tokens174,075 toman870,375 toman
Output / 1M tokens1,740,750 toman1,740,750 toman
≈ one 1,000-word request2,489 toman3,394 toman
Input cachingNo217,594 toman / 1M
Image inputNoNo
File inputNoNo
Tool callingNoYes
JSON outputNoYes
Reasoning modeNoYes

Which one for what?

Palmyra X5

  • Whole documents or a codebase in a single request
2,489 toman per 1,000 words · Model page

Aion-3.0

  • Multi-step problems, maths, and tracking down a bug
  • Agents that call your own APIs and database
3,394 toman per 1,000 words · Model page

Run both with the same code

Swap the model value between the two ids and send the same request twice; what each answer cost comes back in the X-Uttapen-Cost-Toman header.

curl https://api.uttapen.ir/v1/chat/completions \
  -H "Authorization: Bearer sk-up-…" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "writer/palmyra-x5",
    "messages": [{"role": "user", "content": "Introduce yourself in one sentence."}],
    "stream": true
  }'

model = "aion-labs/aion-3.0"

More comparisons: all pairs · model rankings · full catalogue

base_url = https://api.uttapen.ir/v1