What inference economics covers
Inference economics is the study of the cost structure of running AI models — not training them. It encompasses per-token pricing, hardware utilization, batching strategies, KV-cache management, quantization for serving, speculative decoding, and the architectural choices (like mixture-of-experts) that determine how many FLOPs a model actually consumes per generated token. As frontier models have moved from research artifacts to production infrastructure, inference cost has become the binding constraint for most commercial deployments.
Why it matters now
Training a frontier model is a large but bounded capital expense. Inference is the recurring cost that scales with every user query, every agentic step, and every token of context maintained across a long-running session. The shift from single-turn chat to multi-step autonomous agents — where a model may run for hours, accumulating context and calling tools repeatedly — has made the per-token economics of serving dramatically more consequential. Labs and practitioners alike are now optimizing inference as aggressively as they once optimized training.
The MoE efficiency wedge
The most structurally important development in inference economics has been the mainstream adoption of sparse Mixture-of-Experts (MoE) architectures. Mixtral 8x7B (December 2023) demonstrated the core insight at scale: a model with 46.7B total parameters but only 12.9B active per token runs inference at the cost of a 12.9B dense model while matching or exceeding GPT-3.5 on benchmarks. DeepSeek-V3 extended this to frontier scale — 671B total parameters, 37B active, running at 60 tokens per second, priced at $0.27/$1.10 per million input/output tokens. DeepSeek V4-Flash pushes further: 284B total, 13B active, with a novel Token-wise compression and DeepSeek Sparse Attention (DSA) architecture enabling 1M-token context at lower cost and latency than the Pro variant. Mistral Small 4 (119B total, 6B active) claims 40% latency reduction and 3x throughput improvement over its predecessor. The pattern is consistent: MoE is now the default architecture for any model where inference cost is a design constraint.
Token efficiency as a pricing lever
Beyond architecture, labs have begun competing on token efficiency — how many tokens a model needs to complete a given task. Claude Opus 4.5 claimed up to 65% fewer tokens than prior models on equivalent tasks. At a fixed per-token price of $5/$25 per million input/output tokens, a 65% reduction in token consumption is a 65% reduction in effective cost for the same work. This reframes the pricing comparison: nominal per-token rates are necessary but not sufficient to compare serving costs across models.
Inference-time compute scaling and its cost implications
OpenAI's o1 (September 2024) introduced a new cost axis: inference-time compute scaling, where the model spends more tokens "thinking" before responding. This trades latency and token cost for quality on hard reasoning tasks. GPT-5's unified routing architecture (gpt-5-main, gpt-5-thinking, gpt-5-thinking-nano) operationalized this at serving time — dynamically selecting among sub-models based on task requirements and deployment context. The implication for practitioners is that "model cost" is no longer a fixed number per query; it is a function of the reasoning effort allocated, which can be tuned. MiniMax's MaxProof framework (tournament selection over a population of candidate proofs at inference time) represents the extreme end of this axis — deliberately spending large amounts of inference compute to achieve gold-medal-level mathematical reasoning.
KV-cache management and long-context cost
Long context windows create a specific inference cost problem: the key-value cache that stores prior context grows linearly with context length, consuming GPU memory and increasing per-token cost for every subsequent generation step. Claude Opus 4.6's context compaction mechanism addresses this directly — compressing earlier context in long-running sessions rather than maintaining the full KV-cache. Anthropic also introduced one-hour prompt caching (with Claude Opus 4 / Sonnet 4) to amortize the cost of repeated long-context prefills across multiple requests. These are practical KV-cache management techniques that directly reduce the memory and compute cost of the agentic workloads that now dominate enterprise usage.
Custom inference silicon
The most capital-intensive response to inference economics is vertical integration into custom silicon. OpenAI and Broadcom unveiled Jalapeño (June 2026), a chip designed specifically for LLM inference workloads — the first custom inference silicon from a frontier lab. The strategic logic is straightforward: at the scale of billions of daily tokens, even modest per-token efficiency gains on custom hardware translate to hundreds of millions of dollars in annual serving cost reduction, and reduce dependence on NVIDIA GPU supply. Anthropic's infrastructure strategy takes a different form — massive multi-cloud compute commitments across Amazon Trainium2–4 (up to 5 GW, $100B+ over ten years), Google/Broadcom TPUs (multi-gigawatt, coming online from 2027), and NVIDIA Grace Blackwell/Vera Rubin systems — which directly determines the rate limits and per-token serving capacity available to Claude API customers. The practical consequence was visible: after signing the SpaceX Colossus deal (300+ MW, 220,000+ NVIDIA GPUs), Anthropic doubled Claude Code rate limits and removed peak-hour restrictions.
Open-weight models as price floor
DeepSeek-R1's release at $0.55/$2.19 per million tokens — with MIT-licensed weights enabling self-hosting — established a price floor that closed-source labs cannot ignore. OpenAI's release of gpt-oss-20b and gpt-oss-120b under Apache 2.0, explicitly optimized for efficient deployment on consumer hardware, signals that even frontier labs now treat inference efficiency on commodity hardware as a competitive requirement, not just a research curiosity. The open-weights ecosystem (Meta Llama 3.1 405B, Mistral Small 4, DeepSeek V4-Flash) gives practitioners a credible self-hosted alternative at the lower end of the capability spectrum, compressing the price premium that closed-source APIs can sustain.
The infrastructure investment arms race
The scale of compute commitments now being made is itself an inference economics story. OpenAI's Stargate Project (up to $500B in AI infrastructure over four years), its $122B funding round earmarked partly for compute scaling, and its $100B Amazon Trainium commitment over eight years are all bets that inference demand will grow fast enough to justify the capital. Anthropic's $65B Series H at a $965B valuation, with $47B in annualized run-rate revenue, reflects the same thesis from the supply side: the company that can serve the most tokens at the lowest cost wins the enterprise market. Eight of the Fortune 10 are already Claude customers; over 500 businesses spend more than $1M annually. At that scale, a 10% reduction in per-token serving cost is a material competitive advantage.
Where the frontier is heading
The convergence of several trends points toward a near-term where inference cost is no longer the primary constraint for most use cases, but where efficient inference at extreme scale remains the defining engineering challenge. Custom silicon (Jalapeño), MoE architectures with aggressive sparsity (DeepSeek V4-Flash's 13B active parameters), token efficiency improvements, and KV-cache management techniques are all compressing the cost curve. The remaining open problems are: effective recall in very long contexts (whether compaction preserves the right information), the cost of inference-time compute scaling for reasoning-heavy tasks, and the operational complexity of managing heterogeneous inference infrastructure across multiple cloud providers and chip architectures simultaneously.




