New Sign up free, 10 calls on us. Up to $1, no card needed.

GPT-5.6 Sol

Released 2026-07-09

chatVisionCodeTool callingReasoningPrompt caching

GPT-5.6 Sol is the flagship of OpenAI's GPT-5.6 family, described on its page as the frontier model for complex professional work; OpenAI's guidance is to start here for complex reasoning and coding.

Input
text image $5/M
Output
text $30/M
Cache read
$0.5/M
Context
1.1M
Knowledge cutoff
2026-02

Benchmarks

Above averageNo peer higher79 / 9034 / 90
GPT-5.6 Sol other models measured peer average no peer scored higher
SWE-Bench Pro
64.6%
GeneBench Pro
no peer scored higher 28.7%
OSWorld-Verified
83%
ExploitBench (Cap%)
no peer scored higher 73.5%
HealthBench
57%
GDPval-AA v2 Elo · 642-1861
1747.8
Harvey Lab-AA
87.2%
GPQA Diamond
no peer scored higher 94.6%
BrowseComp
90.4%
Video-MME (w. sub)
89.5%

Vendor-published: Alibaba (Qwen) Anthropic ByteDance DeepSeek Google MiniMax Moonshot OpenAI Tencent Z.ai

Price in context

Where the price sits among 60 comparable models

Input$5/M
$0.05 · Qwen3 VL Flash GPT-5.4 Pro · $30
Output$30/M
$0.275 · DeepSeek V4 Flash GPT-5.4 Pro · $180
Cached read$0.5/M
$0.0028 · DeepSeek V4 Flash GPT-5.4 Pro · $15

The bar shows how this model’s price compares with every other model of the same kind on Synthorai. The cheapest and the most expensive are named at each end. These are base rates; batch, region and cache-write discounts are on the pricing page.

Specs & limits

Tokens

Context window (vendor spec) 1,050,000
Max output (vendor spec) 128,000
Knowledge cutoff 2026-02

Prompt caching

How it caches automatic
Min prefix 1,024
Lifetime 5-10m, up to 1h

Thinking

Vendor control reasoning.effort
Accepted values none · low · medium · high · xhigh · max
Default medium applied when the request sets nothing
Can be turned off Yes
Thinking behaviour The Responses API also takes reasoning.mode, either standard (the default) or pro; mode and effort are independent dials.
Parameter reasoning_effort
Values minimal · low · medium · high the gateway's parameter surface - the vendor mapping above applies

Model

Modalities text + image → text
  • Family flagship for frontier reasoning and long-horizon agentic work
  • introduces the max reasoning effort, a pro reasoning mode in the Responses API, and a beta multi-agent capability that coordinates subagents (3 concurrent by default)
  • the bare gpt-5.6 alias routes to Sol
  • prompts over 272k input tokens billed at 2x input / 1.5x output

per OpenAI official docs ↗

One prompt, measured through the gateway

PROMPT Explain to a CFO, in exactly three sentences, why our LLM bill doubled after we enabled reasoning. CHECK exactly 3 sentences

GPT-5.6 Sol passed · 3 sentences

Enabling reasoning makes the model generate additional internal tokens before producing an answer, so each request consumes more billable compute. Reasoning may also increase response length, latency, tool calls, and retries, further raising per-request cost. In short, usage volume may be unchanged, but the cost per task increased enough to double the bill.

out 111 tok (+34 thinking) latency 2.3 s

Instruction following (exactly three sentences - countable), audience shaping (CFO register), and the hidden-thinking billing gap the token meters below expose.

PROMPT This function is supposed to return the longest run of consecutive equal items, but callers report it is off by one on single-element inputs and misses runs that end at the last index. Fix it and explain the bug in one paragraph. CHECK fix passes tests

GPT-5.6 Sol passed · 8/8 cases

```python def longest_run(xs): if not xs: return 0 best = cur = 1 for i in range(1, len(xs)): if xs[i] == xs[i - 1]: cur += 1 else: cur = 1 best = max(best, cur) return best ``` The original function counted equal *adjacencies* rather than items, so a run of length one produced `0` and every longer run was undercounted by one. Initializing `cur` and `best` to `1` for nonempty input makes them represent item counts, resetting `cur` to `1` starts a new run at the current item, and updating `best` on every iteration ensures a run reaching the final index is included.

out 316 tok (+135 thinking) latency 5.2 s

Whether the fix is actually correct (runnable), explanation density, and token efficiency on a bounded task.

PROMPT Extract a JSON object with fields {company, quarter, revenue_usd_m, growth_pct, guidance} from this text. Use null for anything not stated; add no other fields. CHECK valid JSON, schema exact

GPT-5.6 Sol passed · 5/5 fields, guidance "withheld pending the Q4 close"

{"company":"Meridian Robotics","quarter":"September quarter","revenue_usd_m":412,"growth_pct":"11+","guidance":"withheld pending the Q4 close"}

out 194 tok (+147 thinking) latency 3.2 s

Schema obedience (no invented fields), hallucination pressure (guidance is explicitly withheld), and structured-output path differences.

PROMPT Write a 120-word product announcement for an API gateway feature that caches prompts across providers. Forbidden words: "seamless", "unlock", "game-changer", "revolutionize", "empower". Exactly one sentence must be a question. CHECK 120 words, 0 banned words

GPT-5.6 Sol passed · 120 words, 0 banned, 1 question

Today, we’re introducing Provider Prompt Cache, a new API gateway feature that reuses prompt prefixes across supported AI providers, reducing latency, token costs, and duplicated processing. Teams can define cache policies once, route requests dynamically, and preserve provider flexibility without rewriting application logic. Switching models during testing or failover? The gateway identifies eligible prompt segments, applies provider-specific caching controls, and reports hits, misses, savings, and expiration details through unified logs and metrics. Configurable TTLs, tenant isolation, encryption, and cache-bypass options help teams balance performance, privacy, and freshness for every workload. Provider Prompt Cache is available today in beta through the dashboard and API, with SDK examples and migration guidance included. […]

out 733 tok (+564 thinking) latency 7.7 s

Constraint obedience (word budget, banned-word list, the single question), style fingerprint, and length control.

Use GPT-5.6 Sol in 30 seconds

OpenAI-compatible: swap the base_url, keep your SDK. POST /v1/chat/completions

from openai import OpenAI

client = OpenAI(
    base_url="https://synthorai.io/v1",
    api_key="sk-syn-...",
)

resp = client.chat.completions.create(
    model="gpt-5.6-sol",
    messages=[{"role": "user", "content": "Summarize this diff"}],
    reasoning_effort="medium",
)
print(resp.choices[0].message.content)

About GPT-5.6 Sol

  • It combines a 1,050,000-token context window (vendor spec) and 128K max output tokens with image input and the full hosted tool suite (web search, file search, code interpreter, hosted shell, computer use, MCP), with a February 2026 knowledge cutoff, and the bare gpt-5.6 alias routes to Sol as the family default.
  • The generation introduces a new max reasoning-effort level above xhigh for the most complex tasks, and OpenAI suggests evaluating whether max beats xhigh on your own workload rather than assuming it.
  • It also adds a pro reasoning mode in the Responses API for difficult tasks that can tolerate higher latency and token usage, alongside a beta multi-agent capability that lets the model spin up and coordinate subagents in parallel, defaulting to three concurrent subagents.
  • Migration advice from OpenAI is to start at the reasoning setting you used on GPT-5.5 or GPT-5.4, then test one level lower, because this generation often holds quality with fewer tokens.
  • Prompts above 272K input tokens bill at 2x input and 1.5x output for the full request.
  • Synthorai serves GPT-5.6 Sol natively on its OpenAI-compatible API.

FAQ

Is the GPT-5.6 Sol API free to try?

Yes: new accounts get 10 trial calls and up to $1 in free credit, no card required. At $5/M input tokens, that credit alone covers roughly 24 requests of ~8K tokens against GPT-5.6 Sol.

What is GPT-5.6 Sol best at?

Frontier reasoning and long-horizon agentic work; new max reasoning effort, pro mode, and multi-agent subagents; the bare gpt-5.6 alias routes here by default. See the About section for the full picture from the vendor's own release notes.

How much does GPT-5.6 Sol cost?

GPT-5.6 Sol costs $5 per million input tokens and $30 per million output tokens on Synthorai. That is the provider's list price, with no platform markup. Cached input tokens bill at $0.5/M.

Does GPT-5.6 Sol support prompt caching?

Yes, automatically: OpenAI-served prompts cache with no code changes. Cached input tokens bill at $0.5/M vs $5/M uncached; prompts need a 1,024-token stable prefix to cache (TTL 5-10m, up to 1h). Prompt caching guide →

How do I get access to GPT-5.6 Sol?

Point your existing OpenAI SDK at base_url="https://synthorai.io/v1", set model="gpt-5.6-sol", and you're done. One API key covers every model on the gateway.

What is GPT-5.6 Sol's knowledge cutoff?

GPT-5.6 Sol's knowledge cutoff is 2026-02, per the vendor's official documentation (as of 2026-07-10).

Related models

Compare

Every value on this page is transcribed from the vendor's own documentation, linked above, and carries the date it was checked. Prices are compared across the catalogue; specification values that vendors define differently are shown with the difference stated rather than charted. Nothing here is measured by us, and nothing is scored.

Get your API key Compare your cost →