Quick answer: GPT-5.6 Terra is OpenAI's balanced mid-tier model in the GPT-5.6 family, released July 9, 2026. It achieves 96.5% on ARC-AGI and 50.4% on Agent's Last Exam at half the price of Sol — making it the recommended default for most professional and agentic workloads. Priced at $2.50 input / $15 output per 1M tokens with a 1.1M-token context window.
Where GPT-5.6 Terra leads
Where it lags
ultra multi-agent mode (Sol-exclusive)Best for: Professional developers, enterprise automation pipelines, and agentic workflows where strong capability is required but Sol's premium cost is not justified.
GPT-5.6 Terra occupies the middle tier of OpenAI's GPT-5.6 family, positioned between Sol (maximum capability) and Luna (lowest cost). The "Terra" name is a permanent capability band — as OpenAI improves the GPT-5.6 generation, Terra advances alongside Sol and Luna, maintaining its role as the balanced default.
For most teams, Terra is the natural starting point. Its benchmark results sit very close to Sol's on the tasks that matter most for general agent development: 96.5% on ARC-AGI (vs Sol's 97.5%) and 50.4% on Agent's Last Exam (vs Sol's 52.7%). That ~2-point gap costs 2× in per-token pricing. On tasks that don't saturate the model's capability ceiling — routine coding assistance, document analysis, multi-turn dialogue — Terra delivers essentially equivalent output to Sol.
Terra shares the same 1.1M-token context window as Sol, making it equally capable for long-context retrieval, whole-codebase analysis, and multi-document synthesis. The primary trade-off vs Sol is access to extended reasoning modes: Sol's max and ultra effort levels are not available on Terra.
| 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 | $2.50 | $15.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 Terra has a ~1.1M-token context window — roughly 800–900 pages of text in a single request. This matches Sol's context capacity exactly, making Terra suitable for the same long-context workloads (full codebases, long contracts, multi-session analysis) at a significantly lower cost per run.
| Benchmark | Score | Source | Date |
|---|---|---|---|
| ARC-AGI | 96.5% | Benchgen evaluation | 2026-07 |
| Agent's Last Exam | 50.4% | Benchgen evaluation | 2026-07 |
Per-variant scores currently available for ARC-AGI and Agent's Last Exam. Shared family scores (GPQA Diamond, TerminalBench, SWE-Bench Pro, etc.) are reported for GPT-5.6 Sol — see the GPT-5.6 Sol page for the full benchmark table.
| Model | Context | ARC-AGI | Agent's Last Exam | Price (in/out per 1M) |
|---|---|---|---|---|
| GPT-5.6 Sol | 1.1M | 97.5% | 52.7% | $5 / $30 |
| GPT-5.6 Terra | 1.1M | 96.5% | 50.4% | $2.50 / $15 |
| GPT-5.6 Luna | 1.1M | 88.0% | 50.3% | $1 / $6 |
| Grok 4 | 256K | — | — | — |
| Gemini 3 Pro | 1M | — | — | — |
Terra is the sweet spot in the GPT-5.6 family for most production workloads: it closes to within ~2 points of Sol on both major benchmarks while costing half as much. The gap between Terra and Luna, by contrast, is larger (8.5 points on ARC-AGI), making Terra the better default over Luna for any task with meaningful reasoning demands.
Terra's benchmark profile indicates strong general-purpose capability with only marginal degradation versus Sol. The 96.5% ARC-AGI score confirms it handles novel problem-solving at near-frontier level, while 50.4% on Agent's Last Exam (Benchgen's multi-step agentic evaluation) demonstrates reliable multi-tool and long-horizon task execution.
For agent builders, Terra is the recommended default tier when moving from prototype to production: capable enough to handle the majority of real-world task types, priced for sustainable at-scale operation, and sharing Sol's full 1.1M-token context window for long-document and codebase workflows. Escalate to Sol only when your evaluation data shows a consistent capability gap on specific high-stakes tasks.
from openai import OpenAI
client = OpenAI(api_key="YOUR_API_KEY")
response = client.chat.completions.create(
model="gpt-5.6-terra",
messages=[{"role": "user", "content": "Review this pull request and flag any issues..."}],
)
print(response.choices[0].message.content)max and ultra reasoning effort modes. Terra is the balanced mid-tier ($2.50/$15 per 1M) that scores within ~2 points of Sol on ARC-AGI and Agent's Last Exam benchmarks, without the extended reasoning modes. For most production workloads, Terra offers the best capability-to-cost ratio. 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.
This model isn’t on any benchmark leaderboard yet.