Hidden Reasoning Tokens + Collapsed Cost Frontier = Your Inference Budget Is Wrong
The Cost Model You're Running Is Broken
Two developments this week converge into a single urgent message: you're paying more than you think for inference, and you could be paying far less. First, researchers confirmed that Instruct-tuned LLMs secretly generate thousands of reasoning tokens even when thinking/chain-of-thought mode is explicitly disabled. Second, five major model releases in one week collapsed the gap between flagship and mid-tier models to near-irrelevance.
Mid-tier models now match flagships within 1-2 percentage points on agentic tasks at 40% less cost; if you're not routing queries to the cheapest capable model, you're subsidizing benchmark bragging rights you don't need.
The Hidden Token Problem
The finding that Instruct models burn hidden reasoning tokens means your cost-per-query estimates are systematically low. If your budget model assumes output tokens ≈ visible tokens, you're underestimating spend by an unknown but potentially significant margin. The specific models affected and the magnitude of the overhead weren't disclosed, but the directional finding is critical for anyone running Instruct models at scale.
The New Cost-Performance Landscape
| Model | Agentic Coding | Input $/M tokens | Output $/M tokens | Notable |
|---|---|---|---|---|
| Claude Opus 4.6 | 80.8-80.9% | $5 | $25 | Co-leader with GPT-5.3 Codex |
| Claude Sonnet 4.6 | 79.6% | $3 | $15 | Beats Opus on finance & office tasks; 1M context |
| Gemini 2.5 Pro | — | — | — | 9-point ARC-AGI lead (77.1%) |
| Qwen3.5 9B | — | Open-source | Open-source | Claims to beat 120B model; runs on 6GB RAM |
Sonnet 4.6 lands within 1.2 percentage points of Opus on agentic coding at 40% less cost, and actually outperforms Opus on finance and office workflow tasks. Its 1M token context window at mid-tier pricing means you can feed entire codebases without chunking. Meanwhile, Qwen3.5 9B claims to beat OpenAI's gpt-oss-120B — a 13x compute efficiency gain — under Apache 2.0.
Critical caveat on Qwen: no specific benchmark names, no evaluation harness details, and "graduate-level reasoning" could mean anything from GPQA to something proprietary. The 4B variant's 262K context window is technically notable but needs needle-in-a-haystack verification.
The Routing Architecture
The pattern is now clear: build a routing layer that classifies incoming queries by task type and routes to the cheapest model meeting your quality threshold. Sonnet for most agentic work, Opus/GPT-5.3 Codex for the hardest coding tasks, Gemini 2.5 Pro for visual reasoning, and Qwen3.5 for edge/cost-sensitive inference. Docker Model Runner now exposes an OpenAI-compatible local endpoint at localhost:12434, making A/B testing local vs. cloud trivially easy.
What About Chinese Open-Weight Models for General Reasoning?
Sources diverge sharply here. Qwen3.5 claims impressive narrow benchmarks, but ARC-AGI-2 scores tell a different story: DeepSeek V3.2 scored 4%, GLM-5 scored 5%, Minimax M2.5 scored 5%, and Kimi K2.5 scored 12% — all below where frontier labs were in July 2025. As Ethan Mollick noted, these models are "quite fragile, good at some narrow areas but much less capable in general tasks." Use them for specific, benchmarked tasks; don't trust them for general reasoning.
What to do
Log actual token consumption on all Instruct LLM calls this week — compare total tokens (including hidden reasoning) against your cost projections
Benchmark Sonnet 4.6 against your current Opus/GPT workloads on your actual task distribution by end of sprint
Download and evaluate Qwen3.5 9B and 4B from Hugging Face on your task-specific eval suite this quarter
Implement model routing/cascading in your inference pipeline if you haven't already