Model selection at most companies is a one-line decision: use the best one. It's a defensible default — frontier models are remarkably good, and engineering time is expensive. But as workflows scale from demo to production volume, the one-liner quietly becomes a standing invoice, and "the best model for everything" starts costing real money to do things a smaller model does indistinguishably well.
01What actually determines the requirement
- ▸Reasoning depth, not task prestige. Classifying a support ticket into six categories is not a hard problem, even though it's an important one. Multi-step scope drafting with tradeoffs is. Match the model to the reasoning depth of the step — importance is what evals and review gates are for.
- ▸Structure of the output. Extraction into a rigid schema, routing decisions, yes/no gates — heavily constrained outputs give small models less room to be wrong. Open-ended prose with judgment and tone is where larger models earn their rate.
- ▸Cost × volume, not cost. A step that runs 50 times a day at frontier pricing is noise. The same step at 50,000/day is a budget line. Sizing matters exactly in proportion to volume — which is why it's a production concern, not a prototype one.
- ▸Latency budget. A human waiting on a draft tolerates seconds. A pipeline step inside a request path may not. Smaller models buy latency headroom that no prompt engineering can.
02The pipeline pattern
Real workflows aren't one model call — they're pipelines, and pipelines let you mix. The pattern that shows up again and again: small, fast models handle the high-volume routine steps (classify, extract, route, validate), and the big model gets invoked for the minority of steps — or the minority of cases — that need actual judgment.
The escalation variant is particularly efficient: the small model handles everything but emits a confidence signal, and low-confidence items retry on the larger model. You pay frontier rates only for the cases that need frontier reasoning, and the routing decision itself is measurable.
03How to decide with evidence
The sizing debate ends the same way every model debate should: with an eval set. Twenty to fifty real examples of the step, a scoring rule, and an afternoon of running candidates against it. If the small model matches the big one on your actual distribution, the decision is made — not by benchmark charts, by your data.
- ▢Build the eval set from real workflow history, including the ugly cases.
- ▢Score what the workflow cares about — schema validity, decision accuracy, tone — not generic benchmarks.
- ▢Test the prompt you'll actually ship; small models are more prompt-sensitive than large ones.
- ▢Re-run the eval on provider updates and quarterly — sizing decisions have a shelf life.
04A sizing walkthrough
Walk one representative pipeline through the framework — a document-heavy intake workflow, say 2,000 documents a month. Step one classifies the document type: bounded input, six known categories, rigid output. A small model with a constrained prompt handles this; on a 40-case eval it matches the frontier model, and at volume the cost difference is a rounding error versus a line item. Step two extracts fields into a schema: mostly small-model work, but the eval shows accuracy dropping on the two gnarliest document types — so those route by document type to the larger model. Perhaps 15 percent of volume pays frontier rates.
Step three drafts the exception summaries for human review — open-ended prose where tone and judgment matter, low volume because only flagged documents reach it. Frontier model, no debate: the volume is small and the quality ceiling is the point. The blended result: the large model touches maybe a fifth of total tokens, the pipeline's cost drops accordingly, and — the part teams don't expect — the eval scores rise slightly, because each step is running on a model actually suited to its shape.
The walkthrough generalizes: classify and validate small, extract small with escalation by measured weakness, reason and write large. Let the eval set — not the pricing page, not the benchmark chart — draw the lines.
05When to stop optimizing
The counter-trap: teams that spend two engineering weeks saving forty dollars a month in tokens. Model costs keep falling; engineering hours don't. Optimize sizing when volume is real and the line item is visible — and default to the model that ships the workflow this month otherwise. A working automation on an oversized model beats an optimized one still in staging, every time.
OPERATOR NOTE — The cheapest token is the one a well-designed workflow never needed to spend. Prompt and pipeline design usually save more than model arbitrage.
Put this thinking to work.
A 30-minute strategy call with an operator — we'll map your first deployment path, not send a deck.
