uttapen

Skyfall 36B V2 vs Trinity Large Thinking

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, Trinity Large Thinking comes out about 1.3× cheaper.

FeatureSkyfall 36B V2Trinity Large Thinking
ProviderThedrummerArcee
Model idthedrummer/skyfall-36b-v2arcee-ai/trinity-large-thinking
Context32,768 tokens262,144 tokens
Max output29,491 tokens80,000 tokens
Input / 1M tokens159,569 toman72,531 toman
Output / 1M tokens232,100 toman232,100 toman
≈ one 1,000-word request509 toman396 toman
Input caching72,531 toman / 1M17,408 toman / 1M
Image inputNoNo
File inputNoNo
Tool callingNoYes
JSON outputYesNo
Reasoning modeNoYes

Which one for what?

Skyfall 36B V2

  • Chat, summarising, and everyday text generation
509 toman per 1,000 words · Model page

Trinity Large Thinking

  • Multi-step problems, maths, and tracking down a bug
  • Whole documents or a codebase in a single request
  • Agents that call your own APIs and database
  • High-volume work where cost per call decides
396 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": "thedrummer/skyfall-36b-v2",
    "messages": [{"role": "user", "content": "Introduce yourself in one sentence."}],
    "stream": true
  }'

model = "arcee-ai/trinity-large-thinking"

More comparisons: all pairs · model rankings · full catalogue

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