News

GPT-5.6 Goes GA: The Locked Preview Opens Two Weeks Later

When OpenAI previewed GPT-5.6 on June 26, the story was the gate: the strongest coding model of the month was limited to a small set of trusted partners at the U.S. government's request. On July 9, 2026, the gate opened. Sol, Terra, and Luna are now generally available across ChatGPT, Codex, and the API after a 13-day preview in which OpenAI says it tested safeguards with expert organizations and trusted partners. The model you could only read about two weeks ago is now one you can call — and the GA release adds concrete availability details and developer features.

July 11, 2026


What Changed on July 9

This is the general-availability follow-up to the locked preview we covered on June 29. The short version of the unlock: a June U.S. executive order directs agencies to design a voluntary framework for government access to certain frontier models before trusted-partner releases. It also explicitly says that the framework is not a licensing or preclearance requirement. OpenAI said the government requested its initial limited preview, so GPT-5.6 went first to a small group of trusted partners whose participation was shared with the government. OpenAI announced general availability on July 9, with a global rollout expected to take roughly 24 hours.

What GA means in practice: all three models — Sol (flagship), Terra (balanced), and Luna (fast and cheap) — are self-serve in the API with official model IDs (gpt-5.6-sol, -terra, -luna), available in Codex, and rolling out across ChatGPT's paid tiers. This is the first time GPT-5.6 appears in ChatGPT at all; the preview was API and Codex only, for invited partners.

Pricing held at the numbers shared during the preview: Sol at $5 per million input tokens and $30 per million output, Terra at $2.50 / $15, and Luna at $1 / $6. Cache reads keep a 90% discount with a 30-minute minimum retention window, which matters for agent sessions that reuse the same repository context across many calls. These are list prices, not launch promotions — but as we argued in the intro-pricing trap, it's still worth writing down which price your unit economics assume before a dependency hardens.


What GA Ships That the Preview Didn't

Two additions stand out for developers. The first is programmatic tool calling in the Responses API: instead of emitting one tool call at a time and waiting for your code to respond, the model can write and run an in-memory program that coordinates multiple tools and processes intermediate results. OpenAI says this can reduce tokens and model round trips because only the results that matter need to return to the context window. If your agent burns most of its budget shuttling tool output back into the prompt, this is the feature to evaluate first.

The second is that ultra mode — the subagent orchestration feature from the preview — now has concrete availability and numbers. It runs four agents in parallel by default and lifts Sol's self-reported Terminal-Bench 2.1 score from 88.8% to 91.9%. It's available in Codex from the Plus tier up and in ChatGPT Work for Pro and Enterprise plans. Note what ultra mode actually is: a spend-more-to-get-more lever. Four parallel agents consume tokens accordingly, so treat it as a budget decision per task, not a default switch to flip. There's also a new max reasoning-effort setting above the existing levels, and the usual caveat applies to all the launch benchmarks: they're OpenAI's own numbers until independent evals reproduce them.


What This Means for How You Build

The short version: the best coding model you couldn't use is now a model you can evaluate, and the two-week lock ends as a footnote rather than a precedent — until the next launch, when the review window may be longer. Build the eval, price the modes, and keep the fallback path you already have.

Sources