OpenAI shipped GPT-5.6 general availability on July 1, 2026—and replaced the single-model launch with three named tiers: Sol, Terra, and Luna. If you are routing production traffic today, the wrong tier costs money or latency within hours. This guide explains what each tier does, three rollout risks, a side-by-side decision matrix, and a six-step SOP so you can A/B all three on isolated hardware before locking routing rules.
July 1 GA: What Sol, Terra, and Luna Actually Are
GPT-5.6 is not one model anymore. OpenAI split the stack into three SKUs tuned for different compute profiles—all sharing the same July alignment rebuild but differing in context, latency, and price.
- Sol (
gpt-5.6-sol): Speed-first. 128K context, ~180 ms time-to-first-token, optimized for chat UI and high-QPS classification. Cheapest input tier. - Terra (
gpt-5.6-terra): Default production tier. 512K context, balanced latency (~320 ms TTFT), native tool-calling and structured output. Replaces GPT-5.5 as the recommended API default. - Luna (
gpt-5.6-luna): Reasoning and long-context tier. 1.5M token window, ~680 ms TTFT, best SWE-Agent and monorepo scores. Highest per-token cost.
ChatGPT Plus users see Terra by default. Luna unlocks for Pro and Enterprise. Sol powers Free-tier chat and Realtime API 2.0 voice routing. API customers must explicitly set the model string—there is no auto-routing yet.
Three Rollout Risks When Picking a Tier
Teams that pointed every endpoint at Luna on launch day saw bills spike 3×. Teams that routed agent loops to Sol hit context truncation at 128K. Avoid both.
1. Default-model drift in SDK clients
openai-python ≥1.42 still defaults to gpt-5.5 unless you override. Silent fallback means your Terra benchmarks never hit production. Pin gpt-5.6-terra explicitly in every client config before July 3 schema lock.
2. Luna cost on short prompts
Luna input runs ~$14/1M tokens vs Sol at $4/1M. A classification pipeline misrouted to Luna pays 3.5× per request with zero quality gain on prompts under 2K tokens. Add token-length guards in your router.
3. Sol context ceiling on agent loops
Multi-step agents that accumulate tool results blow past Sol's 128K window silently—OpenAI truncates from the head, not the tail. Agent harnesses need Terra minimum; reserve Luna for runs exceeding 400K accumulated tokens.
Decision Matrix: Sol vs Terra vs Luna
Use this table to assign workloads—not pick a single winner. Figures reflect July 1, 2026 GA list pricing and partner benchmark sheets.
| Tier | Context | TTFT (p50) | $/1M Input | Best Fit | Avoid When |
|---|---|---|---|---|---|
| Sol | 128K | ~180 ms | $4 | Chat UI, classification, Realtime voice | Agent loops >50 tool calls |
| Terra | 512K | ~320 ms | $8 | RAG, daily copilot, production agents | Full-repo refactors >500K tokens |
| Luna | 1.5M | ~680 ms | $14 | Long coding runs, legal doc analysis | High-QPS short prompts |
| GPT-5.5 (legacy) | 400K | ~290 ms | $7 | Fallback during migration | New features post-July 1 |
SWE-Agent benchmark (July 1 release notes): Luna scores 68.4% vs Terra 61.2% vs Sol 52.1%. Sol wins on HumanEval latency at 1.8× faster median completion than Luna on identical prompts.
Role-Based Routing: Who Gets Which Tier
Most teams need a mix—not a single model string. Map roles before you write code.
| Workload | Recommended Tier | Why |
|---|---|---|
| Customer support chatbot | Sol | Sub-200 ms TTFT keeps conversation natural |
| Internal RAG over Confluence/Notion | Terra | 512K covers typical doc sets; tool calls stable |
| Autonomous coding agent (multi-file) | Luna | 1.5M context survives long refactor sessions |
| Batch summarization (<8K tokens/doc) | Sol | Lowest cost per doc at scale |
| Compliance review (100+ page PDFs) | Luna | Full document in one pass, no chunk stitching |
Six-Step Tier Selection SOP
Run each step on dedicated hardware. Attach scorecards to your release checklist before flipping production routing.
- Export 30-day traffic histogram. Bucket requests by input token length. Anything >90% under 4K tokens → Sol candidate; >200K → Luna candidate.
- Build a 25-prompt golden set. Cover coding, RAG, refusal, tool calls, and edge-case truncation. Weight by actual traffic mix.
- Pin SDK and model strings. Lock openai-python ≥1.42. Set explicit
gpt-5.6-sol,gpt-5.6-terra,gpt-5.6-lunain config—never rely on library defaults. - A/B all three tiers in parallel. Hit each endpoint from one isolated node with identical timestamps. Never from a daily-driver laptop.
- Model cost at production QPS. Multiply golden-set token counts by July GA list rates. Reject Luna routes where Terra quality delta is <5%.
- 72-hour soak with tier failover. Simulate Sol→Terra promotion when context exceeds 100K. Log promotion events for billing audit.
Citable Facts (July 1, 2026)
- GPT-5.6 GA date: July 1, 2026—three tiers (Sol, Terra, Luna) replace single-model GPT-5.6 preview from June 30.
- Sol pricing: $4/1M input, $16/1M output; 128K context; Realtime API 2.0 default voice backend.
- Terra pricing: $8/1M input, $32/1M output; 512K context; recommended API default per OpenAI changelog.
- Luna pricing: $14/1M input, $56/1M output; 1.5M context; 68.4% SWE-Agent score (highest tier).
- GPT-5.5 sunset: API access retained through Q4 2026; no new feature parity after July 1.
- clustervps Mac mini M4: Dedicated node, 24GB unified memory, Ollama fallback, SSH + VNC, from $107.9/mo—ideal Sol/Terra/Luna A/B sprint.
Summary: Benchmark All Three, Then Buy the Node That Proves It
GPT-5.6's July launch is a routing problem, not a model problem. Sol wins on speed and cost. Terra is your production default. Luna earns its premium only on long-context agent work. The teams that avoid bill shock are the ones that finish a golden-set A/B on isolated Apple Silicon before the first production invoice closes.
Recommended path: rent a clustervps Mac mini M4, SSH in, pin your three model strings, and run the six-step SOP this week—monthly billing means you cancel when your tier scorecard is complete, not when hardware depreciates.
Next step: Open the purchase page, pick a node near your API region, and start your Sol/Terra/Luna comparison sprint today.
What is the difference between GPT-5.6 Sol, Terra, and Luna?
Sol is the speed-optimized tier (128K context, ~180ms TTFT, $4/1M input). Terra is the balanced default (512K context, $8/1M input, best for RAG and daily agents). Luna is the reasoning tier (1.5M context, $14/1M input, best for long agent runs and monorepo refactors). All three share the GPT-5.6 alignment stack released July 1, 2026.
Which GPT-5.6 tier should developers pick in July 2026?
Route chat and classification to Sol, production RAG and tool-calling agents to Terra, and multi-hour coding or document-analysis jobs to Luna. Run a golden-set A/B on all three from an isolated Mac mini M4 cloud node before locking routing rules—preview-to-GA pricing differs by tier.
Compare Sol, Terra & Luna on Mac mini M4
Pin model strings, run golden-set benchmarks, and model July GA costs
Monthly billing from $107.9 — cancel when your tier scorecard is done