Trend · July 15, 2026
Small, specialised models are quietly winning
The reflex is to reach for the biggest frontier model. For many production tasks a smaller open-weight model, fine-tuned, is faster, cheaper and good enough.
- ML
- LLM
- Open weights
- Cost
Solidslate AI · 7 min read
Frontier models are extraordinary and they are the right tool for open-ended reasoning. But a lot of production AI is not open-ended reasoning. It is classification, extraction, routing, summarising a known format, rewriting text, a step inside an agent. For those, the industry is discovering that a much smaller model, often open-weight and sometimes fine-tuned on a few thousand examples, does the job at a fraction of the cost and latency.
Why the shift is happening now
- Open-weight models in the small-to-mid range have caught up to where frontier models were 18 months ago
- Inference cost at scale became a real line item, and small models are an order of magnitude cheaper
- Latency matters for anything interactive, and small models respond in a fraction of the time
- Fine-tuning tooling got simple enough that a normal engineering team can do it
- On-device and in-VPC deployment solves data-residency concerns that block some clients entirely
The pattern that works: route, do not pick
The strongest architectures do not choose one model. They route: a cheap fast model handles the common, easy cases and escalates the hard or low-confidence ones to a larger model. Most traffic never touches the expensive model, and quality on the cases that need it stays high.
Fine-tuning is for behaviour, not knowledge
Fine-tune a small model to reliably produce a format, adopt a tone, or handle a narrow task. Do not fine-tune to teach it facts. That is what retrieval is for, and facts go stale.
What it costs you
Running your own models means owning inference: GPUs or an inference provider, autoscaling, evaluation when you upgrade the base model, a rollback path. It is real platform work. The trade is predictable cost, lower latency, data control and no dependency on one vendor's pricing and availability.
A reasonable default
- Prototype on a frontier model to prove the task is possible
- Once it works, measure how hard the task actually is
- Try the smallest model that could plausibly do it, with good context
- If it is close, fine-tune on real examples and re-measure
- Keep the frontier model as the escalation path for hard cases
Keep reading
Related pieces
Trend · August 18, 2026
Context engineering is the new prompt engineering
As models got better at following instructions, the hard problem moved: deciding what goes into the context window, in what order, on every call.
ReadTrend · August 25, 2026
Agentic AI is moving to production, and it breaks the old playbook
The industry moved from single-shot prompts to agents that plan, call tools and act over many steps. That shift changes what you build around the model.
ReadGuide · April 22, 2026
Evaluating an AI feature before you ship it
A prototype that looks good in a demo tells you almost nothing about production behaviour. Here is how to build an evaluation that does.
ReadWeighing build versus buy on AI?
Tell us what you're working on. We come back within two business days with a point of view and next steps.