Quick answer: GPT-5.6 Sol is OpenAI's highest-capability tier in the GPT-5.6 family, released July 9, 2026. It scores 94.6% on GPQA Diamond, 88.8% on TerminalBench 2.1, 97.5% on ARC-AGI, and 52.7% on Agent's Last Exam — the top result in the GPT-5.6 lineup. Priced at $5 input / $30 output per 1M tokens with a 1.1M-token context window.
Where GPT-5.6 Sol leads
max and ultra reasoning effort modes for demanding multi-step tasksWhere it lags
ultra multi-agent mode requires Pro or Enterprise plan accessBest for: Frontier-difficulty agentic coding, cybersecurity analysis, scientific reasoning, and long-horizon professional tasks where maximum intelligence is required.
GPT-5.6 Sol is the flagship tier of OpenAI's GPT-5.6 model family — a generational step following GPT-5.5, built around delivering more useful work per token. The GPT-5.6 family introduced a durable three-tier naming scheme: Sol (highest capability), Terra (balanced), and Luna (most efficient), with each tier designed to advance independently as OpenAI updates the family.
Sol is distinguished from its siblings primarily by its reasoning effort ceiling. It supports max mode — where the model reasons longer, explores alternatives, and revises before responding — and ultra mode, which orchestrates four parallel subagents by default. ultra makes GPT-5.6 Sol the first OpenAI model to natively expose a multi-agent mode at the API level, delivering faster completion on demanding multi-step tasks at the cost of higher token usage.
For agent builders, Sol's benchmark profile translates directly to task performance: the combination of 88.8% TerminalBench and 97.5% ARC-AGI indicates strong generalisation across structured and novel task types, while the 64.6% SWE-Bench Pro score positions it as a competitive choice for long-horizon software engineering workflows.
| Field | Value |
|---|---|
| Organization | OpenAI |
| Parameters | Undisclosed |
| Context window | ~1,100,000 tokens |
| Architecture | Undisclosed (GPT-5.6 family) |
| License | Proprietary (API only) |
| Release date | July 9, 2026 |
| Knowledge cutoff | September 2025 (estimated) |
| Modality | Text + Image (multimodal) |
| Input (per 1M tokens) | Output (per 1M tokens) | |
|---|---|---|
| OpenAI API | $5.00 | $30.00 |
Cache writes are billed at 1.25× the uncached input rate; cache reads receive a 90% discount. Pricing per OpenAI pricing page as of July 2026.
GPT-5.6 Sol has a ~1.1M-token context window — roughly 800–900 pages of text in a single request. This is sufficient to load entire mid-size codebases, lengthy legal documents, or multi-session conversation histories without chunking. Long-context retrieval is confirmed at 91.5% on MRCR v2 (8-needle, 256K–512K range).
| Benchmark | Score | Source | Date |
|---|---|---|---|
| GPQA Diamond | 94.6% | OpenAI technical report | 2026-07 |
| ARC-AGI | 97.5% | Benchgen evaluation | 2026-07 |
| TerminalBench | 88.8% | OpenAI technical report | 2026-07 |
| SWE-Bench Pro | 64.6% | OpenAI technical report | 2026-07 |
| BrowseComp | 90.84% | OpenAI technical report | 2026-07 |
| MRCR v2 | 91.5% | OpenAI technical report | 2026-07 |
| MCP Atlas | 81.8% | Benchgen evaluation | 2026-07 |
| AIME 2026 | 99.9% | OpenAI technical report | 2026-07 |
| Agent's Last Exam | 52.7% | Benchgen evaluation | 2026-07 |
| SimpleQA | 71.6% | OpenAI technical report | 2026-07 |
Scores are reported by OpenAI or measured by Benchgen and shown for context. Figures depend on harness, tools, and effort settings — see the source for methodology.
| Model | Context | ARC-AGI | GPQA Diamond | Price (in/out per 1M) |
|---|---|---|---|---|
| GPT-5.6 Sol | 1.1M | 97.5% | 94.6% | $5 / $30 |
| GPT-5.6 Terra | 1.1M | 96.5% | — | $2.50 / $15 |
| GPT-5.6 Luna | 1.1M | 88.0% | — | $1 / $6 |
| Grok 4 | 256K | — | — | — |
| Gemini 3 Pro | 1M | — | — | — |
Sol sits at the top of the GPT-5.6 price-performance curve: it costs 2× Terra but delivers meaningfully stronger results on agentic and reasoning tasks where intelligence ceiling matters more than throughput.
Public benchmarks establish Sol's ceiling: a 97.5% ARC-AGI score and 88.8% TerminalBench place it at the frontier for abstract reasoning and terminal-based coding tasks respectively. The Agent's Last Exam score of 52.7% — the highest in its family — reflects Sol's advantage on tasks requiring sustained multi-step planning and tool use.
For agent builders evaluating Sol against Terra or Luna, the practical question is not raw capability but task difficulty. On straightforward automation and content tasks, Terra and Luna close the gap significantly at 40–80% lower cost. Sol's advantage compounds on tasks that push near the model's limit: novel debugging scenarios, security analysis, and multi-tool orchestration where the max and ultra reasoning modes add concrete value.
from openai import OpenAI
client = OpenAI(api_key="YOUR_API_KEY")
response = client.chat.completions.create(
model="gpt-5.6-sol",
messages=[{"role": "user", "content": "Analyse this codebase for security vulnerabilities..."}],
)
print(response.choices[0].message.content)max and ultra multi-agent reasoning effort modes. Specs and scores sourced from OpenAI's official GPT-5.6 announcement (July 9, 2026) and Benchgen evaluations; third-party benchmark scores attributed inline. Pricing cited to the OpenAI pricing page. Last updated 2026-07-21.