Post

Open-weight LLMs are winning on cost, not benchmarks

Open-weight models are not catching up to frontier APIs on benchmarks. They are already ahead on the number that decides most production budgets: cost per request at scale.

Open-weight LLMs are winning on cost, not benchmarks

Most coverage of open-weight models still frames the question as a benchmark chase: is DeepSeek V4 as good as Claude Opus, does Qwen3 beat GPT on SWE-bench. That framing misses what is actually driving adoption inside companies running AI at real scale in 2026. The number that decides most of those budgets is not a benchmark score. It is cost per request, and on that number several large, public deployments have already moved.

The evidence, not the hype

Uber's engineering team reported a 34 percent reduction in cost per request and a 52 percent reduction in cost per session by March 2026, while token usage and session volume kept growing. The lever was not one clever prompt trick; it was routing more traffic to open-weight models, picking the model per task instead of defaulting to one frontier API, and running weekly benchmarking against the company's own workloads rather than public leaderboards.

Pinterest went further, reporting cost per transaction under 8 percent of what a comparable closed proprietary model would have cost, by combining smaller purpose-built models with post-trained open-weight ones. AT&T, running AI across a workforce of 100,000, cut 56 percent of cost by keeping frontier models only for complex coding tasks and moving simpler work, like code summarization, to open alternatives, at a measured 2 percent quality cost.

These are not fringe experiments. They are companies with real SLAs and real budgets making a deliberate architectural choice, and the spending data backs it up at the market level: Ramp's AI Index for August 2026 found the top 1 percent of firms by AI spend cut per-employee cost by nearly 10 percent that month, reversing months of steady increases. The primary driver Ramp identified was migration to open models, with smarter request routing second.

Why the price gap is this wide

The gap is not subtle. Anthropic's Claude Opus 5 has been reported at roughly 100 times the price of comparable-capability open-weight models on a per-token basis. That is not a rounding difference in a procurement spreadsheet; it changes which workloads are even worth automating.

Part of the reason is that "open-weight" is not one price. The same weights, served by different infrastructure, produce wildly different economics. Take gpt-oss-120b, OpenAI's own open-weight release: independent provider benchmarking from Artificial Analysis shows blended pricing varying by up to 8.9x across hosts for the identical model, from roughly $0.04 to over $0.35 per million tokens depending on the provider. Cerebras serves it at around 3,000 tokens per second on its wafer-scale hardware; other providers are an order of magnitude slower on the same weights. The model is a constant. The provider is the variable that actually moves your bill and your latency.

flowchart TD
    A[Same open-weight model] --> B[Provider 1: wafer-scale hardware]
    A --> C[Provider 2: commodity GPU cluster]
    A --> D[Provider 3: aggressive batching]
    B --> E[Fast, priced for throughput]
    C --> F[Slower, priced for margin]
    D --> G[Cheap, higher latency variance]

Layered on top of provider variance is a genuine hardware and software trend: quantization techniques matured enough in 2026 to run large models in lower precision with minimal quality loss, and GPU capacity aimed at inference (rather than training) got materially cheaper as more of it came online. Together, several industry pricing surveys now put inference cost reductions in the 40 to 60 percent range over the past year for equivalent workloads, independent of which specific model you pick.

Where closed APIs still make sense

None of this means self-hosting or routing to open weights is free of tradeoffs, and the companies above did not treat it that way. AT&T explicitly kept frontier models for the hardest coding tasks rather than moving everything. The general pattern documented across multiple 2026 deployments is a volume threshold: below roughly 100 million tokens a month, a managed closed API is usually still cheaper once you account for the operational overhead of serving, routing, and monitoring your own model traffic. Below that line, someone still has to own uptime, and a per-token API price that looks expensive on paper can be cheaper than the engineering time it replaces.

The decision, in other words, is not "open beats closed." It is a threshold question, and the threshold is falling as tooling for routing and self-hosting matures.

flowchart TB
    A[Estimate monthly token volume] --> B{Above ~100M tokens/month?}
    B -->|No| C[Managed closed API is usually cheaper all-in]
    B -->|Yes| D[Benchmark open-weight options against your own tasks]
    D --> E{Quality gap acceptable for this task?}
    E -->|No| F[Keep frontier model for that task]
    E -->|Yes| G[Route to open-weight model, monitor cost and quality weekly]

What this changes in practice

Three things follow from the evidence, and none of them require betting the whole system on one model family.

Benchmark scores are a starting filter, not a purchasing decision. A model a few points behind on a public leaderboard can still be the right choice once you price it against your actual token volume, because the gap in dollars per million tokens is often an order of magnitude larger than the gap in benchmark points.

Provider selection matters as much as model selection. An 8.9x price spread on identical weights means the question "which model" is incomplete without "served by whom." Two teams deploying the same open-weight model can end up with completely different unit economics.

Task-level routing beats a single default model. Every company in the reporting above kept frontier models somewhere in the stack. The savings came from routing the easy 80 percent of requests to cheaper models, not from a wholesale replacement.

The benchmark race will keep producing headlines. The cost curve is where the actual purchasing decisions are already being made, and it is moving faster than the leaderboards suggest.

This post is licensed under CC BY 4.0 by the author.