OpenAI’s newest model line, GPT-5.6, arrived with an unusual claim built into its own origin story. According to OpenAI, the flagship variant, GPT-5.6 Sol, spent months inside the company’s Codex coding agent rewriting the software that serves it, designing experiments on a smaller companion model, and hunting down inefficiencies across OpenAI’s production systems. A frontier model that measurably improves the infrastructure running it is a recursive step OpenAI has now stated plainly, though the company is the only party that has verified it.
The GPT-5.6 family splits into three tiers built for different jobs. Sol is the reasoning-heavy flagship aimed at the hardest coding and agentic work; run at maximum reasoning, OpenAI says it clears the Artificial Analysis Coding Agent Index score set by Claude Fable 5 while billing less than half as much per task. Terra targets everyday intelligence work, and OpenAI puts its benchmark results in line with GPT-5.5 at half that model’s price. Luna is the volume tier, meant for high-throughput, latency-sensitive jobs, and it undercuts Sol’s own price by 80 percent. Every one of those comparisons comes from OpenAI’s own testing, a point worth stating once and remembering for every figure below.
Serving a model cheaply depends on more than the model itself. OpenAI’s inference stack has to route each request to the right cluster, balance load across GPUs, and keep hardware from sitting idle between computations. OpenAI says Sol, working through Codex, analyzed production traffic, found imbalances engineers had missed, and tested new routing rules, work that lowered the cost of serving OpenAI’s models substantially. Sol also rewrote the low-level GPU code, known as kernels, that carries out the model’s core math, using Triton and Gluon, two open-source programming languages OpenAI maintains for GPU work. OpenAI says the kernel work shaved 20 percent off end-to-end serving costs, and that it built a verification tool called FpSan to check the correctness of code Sol wrote.
Two more techniques explain where the rest of the savings came from. Speculative decoding, in which a smaller draft model guesses several tokens ahead and the main model verifies many of those guesses in a single pass instead of generating output one token at a time, is one of them. OpenAI says Sol redesigned its own draft model, running hundreds of architecture experiments and then supervising the retraining process, including catching hardware failures and unstable runs without a human stepping in. That effort raised how efficiently the system generates tokens by more than 15 percent, according to OpenAI. Separately, prompt caching, which lets the system skip recomputing text it has already processed as long as new content is only added after that text rather than inserted earlier in the conversation, benefited from Sol tuning batching and cache settings for individual workloads, a problem OpenAI says was previously too large to solve by hand.
The agentic harness that runs Codex and ChatGPT Work, a Rust based layer connecting models, tools and a user’s files, absorbs its own share of waste. When an agent has access to many tools, skills and long conversation history, the context sent to the model on every step can balloon, adding cost and distracting the model with irrelevant detail. OpenAI’s fix defers loading integrations and tool definitions until they are actually needed, and it caps what any single tool can return to 10,000 tokens unless the model asks for a higher limit.
Every mechanism described here, the routing fixes, the kernel rewrites, the draft model redesign, the caching rules, comes from OpenAI’s own account of its engineering process. No outside benchmark or independent audit accompanies the 20 percent and 15 percent figures, and OpenAI has not said what share of the total optimization work across the stack Sol handled versus its human engineers.
For teams building on Codex or weighing GPT-5.6 against Claude Fable 5 or other frontier options, the pricing tiers OpenAI has published for Sol, Terra and Luna are the numbers to model against current contracts now, while the underlying efficiency claims should be treated as one vendor’s account until a third party replicates them.
OpenAI published this account of GPT-5.6’s engineering process on July 30, 2026.