OpenAI released GPT-5.6 last week, and for once the naming is the most interesting part. The family ships as three models: Sol (flagship), Terra (balanced), and Luna (fast and cheap). The number tells you the generation. The name tells you the capability tier. Those tiers are meant to be durable, so when GPT-5.7 arrives, "Terra" will still mean the same thing it means today.
That sounds like marketing until you remember the last three years of model names. Anyone who has maintained a config file full of dated model strings knows exactly why this matters.
The lineup and pricing
Per OpenAI's announcement, the family breaks down like this:
| Model | Position | Input / 1M tokens | Output / 1M tokens |
|---|---|---|---|
| GPT-5.6 Sol | Flagship: coding, science, agents | $5.00 | $30.00 |
| GPT-5.6 Terra | Balanced everyday work | $2.50 | $15.00 |
| GPT-5.6 Luna | High volume, lowest latency | $1.00 | $6.00 |
The headline claim worth testing: Terra matches GPT-5.5 performance at half the price. If that holds for your workload, migrating is a config change that cuts your bill in two. That's the kind of upgrade you do on a Tuesday.
Sol is pitched at agentic coding, science, and cybersecurity work, and it notably completed a U.S. government review before release. The Sol preview post pairs those capability claims with what OpenAI calls its most advanced safety stack to date.
The caching changes are the sleeper feature
GPT-5.6 introduces prompt caching rules that are worth more attention than the benchmarks:
- Explicit cache breakpoints. You now mark where the cacheable prefix ends instead of hoping the automatic heuristics figure it out.
- A 30-minute minimum cache life. Cached prefixes are guaranteed to survive for half an hour.
- Cache writes cost 1.25x the uncached input rate. Cache reads keep the 90% discount.
If you run agents or chat products with long system prompts, do the math on your traffic pattern. A prompt that gets reused within 30 minutes now costs 25% extra once and then 90% less on every subsequent hit. For anything with steady traffic, that's a large, predictable saving. For sporadic traffic with gaps longer than the cache life, you're paying the 1.25x write penalty repeatedly and getting nothing back.
[!TIP] Structure prompts with the static content first (system prompt, tool definitions, few-shot examples) and volatile content last. That was already best practice; explicit breakpoints now make it directly billable engineering.
Which tier should you actually use?
The boring answer is the right one:
- Default to Terra. It's the balanced tier for a reason, and the 2x price cut over GPT-5.5 makes it the obvious migration target.
- Luna for volume. Classification, extraction, summarization pipelines, anything where you call the API thousands of times an hour and latency matters more than brilliance.
- Sol when the task fails on Terra. Agentic coding sessions, multi-step tool use, hard reasoning. At $30 per million output tokens, you want evidence it's needed, not vibes.
Simon Willison's early notes are a good independent read on the family, and MarkTechPost has details on the programmatic tool calling added to the Responses API alongside the launch.
Availability
The models are rolling out now, with general availability promised in the coming weeks. If you're running evals before switching (you should be), the pricing above is already live to test against.
The durable-tier naming is the real story here. If OpenAI sticks to it, "we run Terra" becomes a stable architectural decision instead of a model string you revisit every quarter. That's a small thing that removes a recurring migration tax, and after three years of dated snapshot names, it's overdue.
Tagged with
Written by
DebuggerMe TeamThe DebuggerMe team builds developer tools, writes technical content, and helps teams ship better software.
Related Articles
All articles →OpenAI o3 Reasoning Model Release
OpenAI's latest model targets complex reasoning and logic, setting records on mathematics and competitive programming benchmarks.
The Honest State of AI Code Generation in 2026
Copilot, Claude, Cursor: AI code generation is genuinely useful now. But it's also genuinely overhyped in ways that set developers up for frustration. Here's an honest assessment after 18 months of daily use.
ChatGPT 5.2 Explained: What’s New, How It Works, and Why It Matters
OpenAI releases GPT-5.2 with stronger reasoning, improved math and science performance, and more reliable answers for both technical and non-technical users.