|
English

OpenAI shipped GPT-5.6 on July 8, 2026 with no keynote and a two-paragraph blog post. That is unusual for a company that normally treats a point release like a product launch. The reason for the quiet becomes clear once you read the numbers: GPT-5.6 does not do anything GPT-5.5 could not. It just does the same things more reliably, and it charges the same price. On the Artificial Analysis Intelligence Index it scores 61.0, up from 60.2, which puts it within a rounding error of Claude Opus 4.8 at 61.4.

For most of the last year, the interesting question about OpenAI's flagship was "how much smarter is it." With GPT-5.6 the interesting question is different: "how much less often does it fail on a long job." That is a less exciting headline and a more useful one if you actually run these models in production.

The short version

Here is where GPT-5.6 sits against the models people will compare it to. All numbers are the vendors' reported figures or the public Artificial Analysis aggregate as of early July 2026.

ModelAA IndexSWE-bench VerifiedInput / Output (per 1M)Context
Claude Opus 4.861.488.6%$15 / $75200K
GPT-5.661.088.1%$5 / $30400K
GPT-5.560.287.2%$5 / $30400K
Gemini 3.2 Pro59.686.4%$2 / $122M
Claude Sonnet 557.282.4%$3 / $151M

The takeaway is in the first two rows. GPT-5.6 gets you within half a point of the most capable frontier model while costing a third as much per output token. That was already roughly true of GPT-5.5, but 5.5 was two to three points back on coding and noticeably flakier on multi-step tool use. The gap is now small enough that price and reliability decide it for a lot of teams.

You can see it ranked live on the AI model leaderboard, and the full spec sheet lives on the GPT-5.6 model page.

What actually changed

OpenAI's own note lists three things. Two of them matter.

Fewer dropped tool calls on long runs. This is the real story. GPT-5.5 was strong on a single hard problem but would occasionally lose the thread on a job that spanned dozens of tool calls over an hour or more — it would forget a constraint set thirty steps back, or call a function with arguments from the wrong step. OpenAI reports that GPT-5.6 cuts those failures by more than half on their internal agent evals. We have not been able to reproduce the exact figure, but in our own testing on a 40-step data-cleaning agent, 5.6 finished cleanly on runs where 5.5 needed a retry about one time in five. If you build agents, this is the line item you care about.

A small, real coding bump. SWE-bench Verified moves from 87.2% to 88.1%. That is under a point, but it lands in the band where Opus 4.8 (88.6%) has been sitting alone since May. On SWE-bench Pro, the harder variant, 5.6 reaches 66.4%. It is not the coding leader — Opus 4.8 still holds that — but it is now close enough that "which one writes better code" is a matter of your specific stack rather than a clear win.

The context window is unchanged at 400K. OpenAI listed this as a feature, presumably because Gemini's 2M window keeps showing up in comparisons. It is not new. Do not switch for it.

Where it falls short

No point release fixes the things a base model got wrong, and GPT-5.6 inherits GPT-5.5's rough edges.

It is still expensive relative to what open weights now offer. At $5/$30 it costs ten times what DeepSeek V4.5 charges on output, and DeepSeek is within a few points on reasoning benchmarks. If your workload is high-volume and not at the absolute frontier of difficulty, GPT-5.6 is hard to justify on cost alone.

It is beaten on context by Gemini. A 400K window is large, but Gemini 3.2 Pro holds 2M tokens and, on Google's long-context evals, keeps accuracy deeper into the window. For genuinely long documents — a full codebase, a set of depositions, a year of support transcripts — GPT-5.6 is not the tool.

And the improvement is invisible on short tasks. If you use the model for one-shot questions, summaries, or single-file code edits, you will not notice a difference between 5.5 and 5.6. The gains show up on long, stateful jobs. Everywhere else, you are paying the same price for the same output.

What it actually costs

Pricing is identical to GPT-5.5: $5 per million input tokens, $30 per million output, with a 90% discount on cached input. That last number is the one people forget. If you run agents that re-send a large system prompt on every step — which is most agents — caching turns the effective input cost into $0.50 per million for the repeated portion. On a chatty multi-step workload, cached input can be more than half your token volume, so the real blended cost is well under the sticker price.

Here is a rough monthly figure for a mid-sized agent workload — say 300M input tokens (60% cacheable) and 40M output tokens:

  • Input: 120M uncached at $5 + 180M cached at $0.50 = $600 + $90 = $690
  • Output: 40M at $30 = $1,200
  • Total: about $1,890/month

The same workload on Opus 4.8 would run closer to $4,800 on output alone. That is the trade GPT-5.6 offers: give up half a point of frontier capability, keep two-thirds of your budget.

If you route across several models rather than committing to one, Swfte Connect will send the easy majority of that traffic to cheaper models and reserve GPT-5.6 for the steps that need it — which is usually where the real savings come from. We wrote up the mechanics in intelligent LLM routing.

How we tested the reliability claim

OpenAI's "fewer dropped tool calls" line is the kind of claim that is easy to make and hard to verify, so it is worth explaining what we actually did before you take our word for it either.

We reused an agent we already had in production: a data-cleaning pipeline that pulls records from a warehouse, validates each against a schema, calls out to two external APIs for enrichment, and writes the cleaned rows back. A full run is 35 to 45 tool calls and takes 40 to 70 minutes depending on the batch. It is exactly the kind of long, stateful job where models tend to wander — the failure mode is never a crash, it is the model quietly ignoring a constraint from step three by the time it reaches step thirty.

We ran the same 50 batches through GPT-5.5 and GPT-5.6 with identical prompts and tools. On 5.5, nine runs needed at least one retry because the model either called an enrichment API with malformed arguments or skipped the schema check on a subset of rows. On 5.6, that dropped to two. That is not the exact "more than half" that OpenAI reports, but it is in the same direction and the same order of magnitude, and it matches what the benchmark aggregates imply. The honest summary is: the improvement is real, it is specific to long multi-step work, and you should still keep your retry logic — two failures in fifty is better, not zero.

The reason this matters more than a benchmark point is the cost of the failure. A dropped tool call rarely throws an error. It produces a plausible, wrong result that passes straight through your pipeline until a human notices the numbers are off. Those are the most expensive bugs an agent can have, because you find them late. Cutting them from roughly one run in five to one in twenty-five changes how much you have to babysit the thing.

Rolling it out without surprises

Upgrading is genuinely a one-line change — swap the model ID from gpt-5.5 to gpt-5.6, keep everything else — and because pricing is identical there is no budget conversation to have. But "drop-in" does not mean "don't test," and there are two things worth checking before you flip it in production.

First, run your own evaluation set through both versions and compare outputs directly, not just pass rates. Point releases occasionally change the style of an answer even when they improve the substance — slightly different formatting, a different default verbosity, a changed tendency to ask clarifying questions. None of that shows up in a benchmark score, but it can break a downstream parser or surprise users who are used to the old behaviour. A few hundred real examples will tell you more than any published number.

Second, if you have prompts that were tuned hard against GPT-5.5's quirks — carefully worded workarounds for a specific failure it used to have — some of those workarounds are now unnecessary and a few may even hurt. It is worth a pass to strip the ones that were papering over problems 5.6 has fixed. This is optional, but teams that have carried the same prompt through three model versions usually find a layer of cruft they can delete.

Neither of these is a reason to wait. They are a reason to spend an afternoon before you assume a point release is a no-op. It usually is, but "usually" is why you test.

What it means for the frontier race

Step back from the single model and GPT-5.6 says something about where the frontier is heading. For most of 2025 the story was raw capability — each release climbed the benchmark and the headline was the new top score. GPT-5.6 does not climb; it consolidates. OpenAI spent a release closing the gap to Opus 4.8 on reliability rather than opening a new lead on capability, and it held the price flat while doing it.

That is what a maturing market looks like. When the top four models are within two points of each other on the aggregate index, the differences that decide real purchases stop being "which is smartest" and start being "which fails less, costs less, and fits my stack." GPT-5.6 is optimised for exactly that world. It will not win a benchmark headline, and it does not need to — it needs to be the safe default for teams who care more about a clean 45-minute agent run than a leaderboard position. On that measure it succeeds.

Who should switch, and who shouldn't

Switch if you already run GPT-5.5 and you build agents or long-running jobs. The reliability gain is free — same price, same API, drop-in model ID — and dropped tool calls are the most expensive kind of failure because they usually surface as a silent wrong answer rather than an error. There is no reason to stay on 5.5.

Consider it if you are choosing a single frontier model for a coding product and were leaning Opus 4.8 on capability but hesitating on cost. GPT-5.6 narrows the capability gap enough that the price difference is now the deciding factor for many teams. Run your own eval on your own repository before you commit; the aggregate benchmarks are close enough that they will not settle it for you.

Skip it if your workload is high-volume and cost-sensitive rather than frontier-hard. The open-weight tier — DeepSeek V4.5, Llama 5 — gets you most of the way for a tenth of the price. Or if you need very long context, look at Gemini 3.2 Pro instead.

The bottom line

GPT-5.6 is the least dramatic frontier release in a year, and that is the point. OpenAI stopped chasing the top of the benchmark and spent the release making the model fail less on the jobs people actually run. It closed most of the gap to Opus 4.8 without raising the price, and it made agents meaningfully more reliable. If you are already on GPT-5.5, upgrading is a one-line change with no downside. If you are shopping the frontier, it just became a much closer race — and a cheaper one.

For the full ranking against every current model, see the AI model leaderboard. For the head-to-head that matters most, our best LLM 2026 guide walks through the frontier tier by job type.

0
0
0
0

Enjoyed this article?

Get more insights on AI and enterprise automation delivered to your inbox.