OpenAI shipped GPT-5.6 publicly today, July 9. Three models: Sol, Terra, Luna. One framework. And the benchmarks are not subtle.
The Three-Tier Model
OpenAI dropped the old versioning confusion and went with a durable tier system:
| Model | Role | Input | Output |
|---|---|---|---|
| Sol | Frontier flagship | $5/1M | $30/1M |
| Terra | Balanced (GPT-5.5-class, 2× cheaper) | $2.50/1M | $15/1M |
| Luna | Fastest, cheapest | $1/1M | $6/1M |
The number (5.6) marks generation. Sol, Terra, Luna mark capability tiers — and each tier advances independently. Smart versioning, finally.
Terminal-Bench 2.1: Sol Breaks Records
Sol Ultra hit 91.9% on Terminal-Bench 2.1, the new standard for command-line automation evaluation. For context:
- Sol Ultra mode: 91.91%
- Sol Max mode: 88.76%
- Claude Mythos 5: 88%
- GPT-5.5: 83.4%
That's not incremental. That's a category shift in autonomous coding and shell automation.
Ultra Mode: Subagents Are Now Native
The headline feature nobody is sleeping on enough: Ultra mode spawns subagents.
Sol in Ultra doesn't just think longer — it delegates. When a task has parallelizable components, it spins up subagents to handle them concurrently. This is the architecture that makes 91.9% Terminal-Bench plausible. You're not getting one model grinding through a task sequentially. You're getting an orchestrator.
METR flagged risks here. They should. An AI that autonomously spawns workers and coordinates them at scale is qualitatively different from one that just responds. Caveat emptor on untested agentic pipelines.
Terra Is the Real Story for Most Teams
Sol is impressive. Terra is practical.
Same capability class as GPT-5.5 — which was already excellent — at half the API cost. If you're running any volume through the API, Terra is your default until Sol's price drops. The math is simple:
# Old setup: GPT-5.5
cost_per_million_input = 5.00
# New setup: Terra (same quality tier)
cost_per_million_input = 2.50 # 50% savings, no quality tradeoff
For production workloads, this matters more than Sol's record-breaking scores on synthetic benchmarks.
How This Changes Model Selection in 2026
The old decision tree was: "Is this task important enough for the expensive model?"
The new decision tree is:
- Latency-critical, high-volume, simple tasks → Luna ($1 input)
- Standard production workloads, reasoning, coding → Terra ($2.50 input)
- Frontier research, autonomous agents, complex multi-step tasks → Sol ($5 input)
- Burn the credit card on a hard problem → Sol Ultra
The tier system makes this legible. You're not guessing whether GPT-4o-mini vs GPT-4o vs o1 vs o3 applies to your use case. Sol/Terra/Luna maps to your requirements directly.
Competitive Context
Claude Sonnet 5 (released June 30) was already a strong counter-punch — 57 on the Artificial Analysis Intelligence Index, near Opus 4.8 territory, at $2/$10 per 1M tokens introductory pricing. Anthropic overtook OpenAI on revenue at $47B.
Now OpenAI responds with Sol at 91.9% Terminal-Bench, native subagent orchestration, and a three-tier family that undercuts GPT-5.5 pricing with Terra.
The two-horse race is producing results. Keep shipping.
What to Do Right Now
- Switch existing GPT-5.5 calls to Terra — same quality, half the price
- Evaluate Sol Ultra for any autonomous agent workload — the Terminal-Bench score isn't theoretical
- Read the METR risk report before putting Sol Ultra in production — autonomous subagent spawning has surface area
- Watch the Sol Max vs Luna tradeoff — Max at $5 input vs Luna at $1 input is a 5× difference; benchmark your specific use case before defaulting to Sol
The era of one flagship model is over. Pick your tier, build accordingly.
Top comments (0)