A giant sledgehammer leaning unused against a wall beside a small precise jeweler's hammer actively tapping a tiny nail Tech
AI-generated, Working Theory
Tech · ◉ Evergreen

The biggest model is usually the wrong default

by · ·5 min·Working Theory

Most of what an agent does is narrow and repetitive. A small model tuned to a narrow job is often cheaper, faster, and more reliable than the frontier model — route, don't default to the sledgehammer.

When you wire up an AI agent, there’s a path of least resistance: point every step at the best, biggest model you can afford. It reasons well, it rarely embarrasses you, and it’s one config line. So the frontier model ends up parsing a date, classifying an intent, extracting three fields, and deciding which tool to call — the same model you’d use to plan a refactor is now lowercasing a string. It works. That’s the trap. It works and it’s the wrong default, and 2026 is the year that argument went mainstream.

Look at what an agent actually does across a task and you find that most of the steps are narrow and repetitive: route this request, pull these fields out of that blob, format the output, pick the next tool, check whether the result looks done. A small slice is genuinely open-ended — the messy planning, the novel reasoning, the “figure out what the user even wants.” The frontier model earns its cost on that slice. On the rest, it’s a sledgehammer paying sledgehammer prices — in latency the user feels and in dollars per million tokens you feel.

NVIDIA researchers made the sharp version of this case in a 2025 paper arguing, more or less in the title, that small language models are the future of agentic AI. The claim isn’t that big models are bad; it’s that for the repetitive, narrow, well-scoped sub-tasks that make up the bulk of agent work, a small — often fine-tuned — model is not just cheaper and faster but frequently more reliable, because a narrow model tuned to a narrow job has fewer ways to get creative. Capability you don’t need is a liability when the job wants consistency.

The architecture that falls out of this is a router, not a monolith. Decompose the agent into its steps. For each step, ask what it actually requires. Send the narrow, high-volume steps to a small model; reserve the big model for the few steps that genuinely need open-ended reasoning; and let a cheap classifier decide, per request, when to escalate. You end up running the frontier model on maybe the hard tenth of your traffic and something small and quick on the rest — often with better tail latency and a cost curve that doesn’t buckle when you scale.

agent steps → router small model — most steps narrow · high-volume · cheap · fast big model — the hard few open-ended reasoning · escalate only
Most agent steps are narrow and repetitive. Default to a small model and escalate the rare hard step — don't pay frontier prices to lowercase a string. Original diagram · Working Theory

The reason this is a genuine build decision and not just a cost tip is that it changes how you design the agent. To route, you have to decompose — to actually name the steps and their real requirements, which is exactly the discipline that makes an agent debuggable and evaluable in the first place. A monolith that sends everything to one giant model hides its own structure. A routed system forces you to know what it’s doing, step by step, and to measure each step on its own terms. The cost win is the bait; the legibility is the meal.

Two honest caveats. Fine-tuning and running your own small models is real operational work — you’re trading an API call for a model you now own and must maintain, and that only pays off above some volume. And the frontier keeps moving: today’s “small” model is last year’s large one, so the line between escalate-and-don’t drifts. The durable part isn’t a specific model size. It’s the habit of matching the tool to the task instead of reaching for the most powerful thing by reflex — which is good engineering in any era, and just happens to be very expensive to ignore right now.

The systems, to look up: “Small Language Models are the Future of Agentic AI” (Belcak, Heinrich et al., NVIDIA Research, 2025 — arXiv 2506.02153) — the decompose-and-route argument and the reliability-of-narrow-models point; the broader model-routing / mixture-of-models pattern in production LLM systems. Hedge: it’s a position paper with a point of view; “small beats big” holds for narrow, well-scoped steps, not for the open-ended reasoning you should still escalate.

Sources

  • Small Language Models are the Future of Agentic AI (Belcak, Heinrich et al., NVIDIA Research, 2025 — arXiv 2506.02153)
  • model routing / mixture-of-models in production LLM systems

Liked this? Get the next one in Working Theory.

Going weekly in August (it's in beta now). One genuinely interesting read on building, the brain, and the science most people missed.

Subscribe →
Got a reaction, a counter-example, or something I missed? Reply by email — I read everything.
◉ join in

Where have you hit this — in a product you use, or one you're building?

Threads open here soon. For now, the conversation lives two clicks away — discuss on GitHub, or just reply by email. I read and answer everything.