Yeda AI Tips · #119

Español

Match the Model Tier to the Scope

You're paying top-tier reasoning prices for a one-line fix. Every major provider ships a ladder of models — a fast, cheap tier and a slow, deep-reasoning flagship — yet most developers pin one model and route everything through it. The fix costs one extra second of thought: classify the task's scope first, then pick the tier.

The scope ladder

Before you type the prompt, put the task on a five-rung ladder:

ScopeExampleTier to use
TrivialFix a typo, rename a variable, format a fileFast/cheap tier
LowOne-function bug fix, add a log line, write a unit testFast/cheap tier
MediumNew endpoint, refactor a module, non-obvious bugMid tier (or fast tier + review)
HighCross-cutting change, tricky concurrency, API designFlagship reasoning tier
EpicArchitecture, migration plan, multi-day agentic workFlagship, maximum reasoning

The payoff is asymmetric. Anthropic's own model-selection guide prices its most capable widely released model at $10 per million input tokens and $50 per million output tokens, while its fast tier (Haiku-class) is positioned as "the most economical price point" for high-volume, straightforward tasks. On a trivial edit, the flagship isn't just more expensive — it's usually slower, because deep-reasoning modes spend tokens thinking about a problem that has nothing to think about.

Why the fast tier wins on small scope

A one-line change has a small context, an obvious success criterion, and a cheap failure mode: if the fast model gets it wrong, you see it instantly and retry. That's exactly the profile where provider docs point you at the small model — Anthropic recommends starting with Claude Haiku 4.5 for "high-volume, straightforward tasks" and upgrading only for specific capability gaps. Google's Gemini lineup makes the same split explicit: Flash-Lite is billed as "fastest, most cost-effective," Pro as the deep-reasoning tier for complex tasks.

The reverse also holds. Architecture decisions, migration plans, and epic-scoped agentic work have huge context, fuzzy success criteria, and expensive failure modes — a wrong design costs days, not a retry. That's where the flagship's extra reasoning is worth every token.

The two starting strategies

  1. Start cheap, escalate on failure — for trivial/low scope. Run the fast tier; if the output misses, escalate one rung. Most small tasks never escalate.
  2. Start smart, optimize down — for high/epic scope. OpenAI's model-selection guide is blunt about the order: optimize for accuracy first with a capable model, and only then "aim to maintain accuracy with the cheapest, fastest model possible." Their worked example distilled a task down to a small model at roughly 2% of the original cost — after the frontier model proved the approach.

Both strategies agree on the core move: the tier is a per-task decision, not a per-project default.

Power-user moves

Resources

Building an AI feature? Yeda AI designs, audits, and ships production LLM systems.

Talk to us · Read the blog