
TL;DR
OpenAI's GPT-5.6 Sol, Terra, and Luna tiers versus Anthropic's Claude Fable 5 and Mythos 5. Verified pricing, benchmarks, and a practical framework for picking a coding model in July 2026.
Direct answer
OpenAI's GPT-5.6 Sol, Terra, and Luna tiers versus Anthropic's Claude Fable 5 and Mythos 5. Verified pricing, benchmarks, and a practical framework for picking a coding model in July 2026.
Best for
Developers comparing real tool tradeoffs before choosing a stack.
Covers
Verdict, tradeoffs, pricing signals, workflow fit, and related alternatives.
Within roughly a month, both major labs reshaped the top of the model market. Anthropic shipped Claude Fable 5 and Claude Mythos 5, with Fable 5 generally available on the Claude API since June 9, 2026. OpenAI followed with the GPT-5.6 family - three tiers named Sol, Terra, and Luna - which hit general availability on July 9, 2026 after a limited preview of Sol that started in late June.
This post was written on July 12, 2026. Frontier model pricing and availability change fast, so treat every number here as a snapshot and verify against the linked pricing pages before committing budget.
The interesting part for developers is not just raw capability. Both launches change how you think about model selection: OpenAI has moved to durable capability tiers that version independently, and Anthropic has split its frontier into a broadly available model and a restricted high-capability sibling. Here is what actually shipped, with sources, and how to choose between them for coding work.
OpenAI's GA announcement introduces a new naming scheme: the number (5.6) identifies the generation, while Sol, Terra, and Luna are durable capability tiers that can advance on their own cadence. The tiers:
API pricing per 1M tokens, from the announcement:
| Tier | Input | Output |
|---|---|---|
| GPT-5.6 Sol | $5.00 | $30.00 |
| GPT-5.6 Terra | $2.50 | $15.00 |
| GPT-5.6 Luna | $1.00 | $6.00 |
Three other launch details matter for anyone building coding agents:
Compute settings, not just model sizes. Beyond the familiar reasoning-effort levels, GPT-5.6 adds max (more reasoning time than xhigh) and ultra, which coordinates four agents in parallel by default. OpenAI reports Sol Ultra hitting 91.9% on Terminal-Bench 2.1 versus 88.8% for single-agent Sol. In the API, ultra-style workflows use a multi-agent beta in the Responses API.
Programmatic Tool Calling. The Responses API can now let the model write and run lightweight programs that coordinate tools and filter intermediate results instead of passing every tool response back through the model. OpenAI's customer quotes cite token reductions from 24% up to 63.5% on tool-heavy workflows.
Predictable prompt caching. GPT-5.6 introduces explicit cache breakpoints and a 30-minute minimum cache life. Cache writes are billed at 1.25x the uncached input rate; cache reads keep the 90% discount. If you run long-lived coding agents with big stable system prompts, this materially changes cost modeling.
Product availability, per OpenAI's help center: in standard ChatGPT, only Sol is selectable (it powers the Medium, High, and Extra High reasoning options on Plus and above; Sol Pro is Pro/Business/Enterprise). Terra and Luna are available in ChatGPT Work, Codex, and the API. In Codex, Free and Go users get Terra; paid plans can choose among all three.
Anthropic's launch is structured differently. Per the announcement, Claude Fable 5 and Claude Mythos 5 are the same underlying model; Fable 5 is the version made safe for general availability, while Mythos 5 has certain safeguards lifted and is restricted to approved customers in Project Glasswing plus select biology researchers under a trusted access program. There is no self-serve sign-up for Mythos 5.
Fable 5 specs, from Anthropic's model documentation:
| Spec | Claude Fable 5 |
|---|---|
| API model ID | claude-fable-5 |
| Pricing | $10 / 1M input, $50 / 1M output |
| Context window | 1M tokens |
| Max output | 128K tokens |
| Thinking | Adaptive thinking, always on |
| Availability | Claude API, AWS Bedrock, Google Cloud, Microsoft Foundry (GA June 9, 2026) |
Anthropic positions Fable 5 as "next-generation intelligence for long-running agents" and reports state-of-the-art results on most tested benchmarks, including the top score on Cognition's FrontierCode evaluation at medium effort and long-context performance well ahead of Opus 4.8 on memory-dependent tasks. The announcement highlights a Stripe engagement where the model worked on a 50-million-line codebase migration.
At $10 / $50 per million tokens, Fable 5 is the most expensive mainstream frontier model right now - double Sol's input rate and two-thirds more on output - though Anthropic notes it is less than half the price of the earlier Claude Mythos Preview. One deployment detail worth knowing: Fable 5 uses the newer tokenizer introduced with Opus 4.7, which produces roughly 30% more tokens for the same text than pre-4.7 Claude models, so naive cost comparisons against older Claude bills will understate the difference.
Fable 5 also ships with classifier-based safeguards that redirect flagged cybersecurity, biology, and distillation-adjacent requests to Claude Opus 4.8. Anthropic says this fallback triggers in under 5% of sessions on average. For most application development that is a non-issue, but if you work in security tooling it is a real consideration - OpenAI is meanwhile routing advanced defensive-cyber capability through its own verified trusted access program.
Newsletter
Get the weekly deep dive
Tutorials on Claude Code, AI agents, and dev tools, delivered free every week.
From the archive
Jul 12, 2026 • 7 min read
Jul 12, 2026 • 11 min read
Jul 12, 2026 • 6 min read
Jul 12, 2026 • 5 min read
Cross-lab benchmark comparisons deserve skepticism, and most of the head-to-head numbers below come from OpenAI's own launch post, so weigh that. That said, OpenAI's published tables include results where Claude wins, which makes them more useful than the usual cherry-picking:
| Coding eval | GPT-5.6 Sol | GPT-5.6 Terra | GPT-5.6 Luna | Claude Fable 5 | Claude Opus 4.8 |
|---|---|---|---|---|---|
| Artificial Analysis Coding Agent Index v1.1 | 80 | 77.4 | 74.6 | 77.2 | 72.5 |
| SWE-Bench Pro | 64.6% | 63.4% | 62.7% | 80% | 69.2% |
| Terminal-Bench 2.1 | 88.8% | 87.4% | 84.7% | 83.1% | 78.9% |
| DeepSWE v1.1 | 72.7% | 69.6% | 67.2% | 69.7% | 59% |
The pattern is more interesting than a single winner:
OpenAI's efficiency claims are the through-line of its whole launch: on Agents' Last Exam it reports Sol beating Fable 5 by double digits at roughly one-quarter the estimated cost. Anthropic's counter-position is depth on long-horizon autonomous work, where its announcement emphasizes multi-day task persistence and long-context memory. Both stories can be true at once; they optimize different points on the cost-capability curve.
For choosing a coding model this month:
Default coding agent on a budget: GPT-5.6 Terra. At $2.50 / $15 it benchmarks at or above last generation's flagships and roughly matches Fable 5 on the Artificial Analysis coding index. This is the price-performance anchor of the whole market right now.
Hardest repository-scale work: Claude Fable 5. The SWE-Bench Pro gap is large, the 1M-token context window with strong long-context recall suits monorepo work, and Anthropic's positioning (and customer evidence) centers on multi-day autonomous engineering. You pay for it: budget roughly 2x Sol per token, more once the tokenizer difference is counted.
Terminal-heavy and multi-agent workflows: GPT-5.6 Sol. Best published Terminal-Bench numbers, ultra parallel-agent mode, and Programmatic Tool Calling that meaningfully cuts token spend on tool-heavy loops.
High-volume, latency-sensitive tasks: GPT-5.6 Luna. At $1 / $6 it outperforms Opus 4.8 on OpenAI's coding-index comparison. For code review comments, test generation, and CI helpers, this tier is hard to argue with. Note Luna's long-context scores drop off sharply in OpenAI's own MRCR tables, so keep its inputs short.
Don't plan around Mythos 5. It is invitation-only via Project Glasswing. For general development, Fable 5 is the Claude 5 model that exists for you.
The bigger takeaway is structural. OpenAI now versions capability tiers independently, and Anthropic now splits general-availability and restricted variants of one model. Model choice is becoming a portfolio decision - route easy tasks to cheap tiers, escalate hard ones - rather than a single-vendor bet. If your stack does not already support per-task model routing, that is the infrastructure gap to close before the next wave of releases.
Yes, at every tier as of July 2026. GPT-5.6 Sol is $5 / $30 per 1M tokens versus Fable 5's $10 / $50, per OpenAI and Anthropic. Terra ($2.50 / $15) and Luna ($1 / $6) are far cheaper. Effective cost also depends on token efficiency and caching, so benchmark on your own workload.
It depends on the work. In OpenAI's published results, Fable 5 leads SWE-Bench Pro by about 15 points (80% vs 64.6%), while Sol leads the Artificial Analysis Coding Agent Index (80 vs 77.2), Terminal-Bench 2.1, and DeepSWE, reportedly with far fewer output tokens. For repository-scale autonomous engineering, Fable 5 has the stronger case; for terminal-driven agents and cost-sensitive pipelines, Sol or Terra.
Claude Fable 5 is claude-fable-5 on the Claude API per Anthropic's docs. OpenAI exposes the tiers as Sol, Terra, and Luna through the API; check the OpenAI models documentation for the exact identifiers for your integration.
Almost certainly not directly. Mythos 5 is limited to approved Project Glasswing customers and select biology researchers under Anthropic's trusted access program, with no self-serve sign-up, per the announcement. It shares Fable 5's specs and pricing, so Fable 5 is the practical option.
Claude Fable 5 has a documented 1M-token context window with 128K max output (Anthropic docs). OpenAI's GA post does not state GPT-5.6 context windows, and third-party reports conflict, so check the OpenAI model pages for current limits before designing around a number.
No. Per the GA announcement, the number (5.6) still identifies the generation; Sol, Terra, and Luna are durable capability tiers that can now advance on their own schedules. Expect future releases to update individual tiers rather than the whole family at once.
Read next
Claude vs GPT for real TypeScript work: benchmarks, pricing, model families, and the practical differences that matter when picking a coding model.
5 min readGPT-5.6 Sol dropped on June 26, 2026 as a limited preview with government-imposed access restrictions. Here is what developers need to know about the three-tier Sol/Terra/Luna model family, pricing, availability timeline, and how to prepare your codebase for GA.
9 min readA practical guide to choosing GPT-5.6 Sol, Terra, and Luna, using programmatic tool calling, caching, and the multi-agent beta in production.
9 min readTechnical content at the intersection of AI and development. Building with AI agents, Claude Code, and modern dev tools - then showing you exactly how it works.
Open-source AI pair programming in your terminal. Works with any LLM - Claude, GPT, Gemini, local models. Git-aware ed...
View ToolHigh-performance code editor built in Rust with native AI integration. Sub-millisecond input latency. Built-in assistant...
View ToolAnthropic's AI. Opus 4.6 for hard problems, Sonnet 4.6 for speed, Haiku 4.5 for cost. 200K context window. Best coding m...
View ToolAnthropic's smallest Claude 4.5 model. Near-frontier coding performance at one-third the cost of Sonnet 4 and up to 4-5x...
View ToolInstall Ollama and LM Studio, pull your first model, and run AI locally for coding, chat, and automation - with zero cloud dependency.
Getting StartedA practical walk-through of how to design, write, and ship a Claude Code skill - from choosing when to trigger, through allowed-tools, to the steps the agent will actually follow.
Getting StartedClickable PR link in the footer with review state color coding.
Claude Code
Claude Code Review: Next-Level AI-Assisted Coding In this video, I share my insights after using Claude Code for 30 days. Discover why I believe Claude Code is one of the best AI coding agents...

Google has released an updated version of Gemini 2.5 Pro, enhancing its capabilities in coding and more. This video covers the announcement details, benchmarks, and how to leverage the model....

Learn The Fundamentals Of Becoming An AI Engineer On Scrimba; https://v2.scrimba.com/the-ai-engineer-path-c02v?via=developersdigest OpenAI's New O1 Model and $200/Month ChatGPT Pro Tier: What's...

OpenAI is consolidating its desktop apps, not merging ChatGPT and Codex into one indistinguishable product. Here is how...

xAI launched Grok 4.5, trained on trillions of Cursor interaction tokens. At $2/M input pricing, it undercuts Claude and...

GPT-5.6 Sol dropped on June 26, 2026 as a limited preview with government-imposed access restrictions. Here is what deve...

Codex can point at OpenAI-compatible model providers, local Ollama servers, and internal model proxies. Here is the prac...

The AI coding market is noisy. The changes that matter are easier to spot when you separate model capability, editor loo...

DeepSeek V4 is trending because it is close enough to frontier coding models at a much lower token price. The real quest...

New tutorials, open-source projects, and deep dives on coding agents - delivered weekly.