GPT-Talk

The complete guide to GPT models (2026-07): GPT-5.6 Sol, Terra, Luna

OpenAI's current flagship model family is GPT-5.6 (2026-07-09), split into Sol / Terra / Luna. Capability tiers, pricing, context, reasoning effort, and which to pick — plus GPT-Realtime-2.1 voice and GPT Image 2.

TL;DR
OpenAI's current flagship family is GPT-5.6 (Sol/Terra/Luna), sharing a 1.05M context window, 128K output, knowledge cutoff 2026-02-16. Depth is controlled by reasoning.effort=none..max. Voice is on GPT-Realtime-2.1, images on GPT Image 2.
GPT-5.6 is OpenAI's flagship model family released on 2026-07-09. It ships in three public variants — Sol, Terra, Luna (model aliases gpt-5.6-sol, gpt-5.6-terra, gpt-5.6-luna) — that share 1.05M context, 128K max output, knowledge cutoff 2026-02-16, native multimodal input (text/image/audio/file), and a continuous reasoning.effort control (none → low → medium → high → xhigh → max).

The complete guide to GPT models (2026-07): GPT-5.6 Sol, Terra, Luna

OpenAI collapsed its flagship lineup into the GPT-5.6 family on 2026-07-09 — three tiers Sol / Terra / Luna that share the same technical envelope. This guide gets you oriented in under five minutes.

1. Snapshot — 2026-07-14

Tiermodel aliasInput / Output (per MTok)ContextMax outputKnowledge cutoffPositioning
GPT-5.6 Solgpt-5.6-sol (alias gpt-5.6)$5 / $301.05M128K2026-02-16Frontier, complex professional work
GPT-5.6 Terragpt-5.6-terra$2.50 / $151.05M128K2026-02-16Balance of intelligence and cost
GPT-5.6 Lunagpt-5.6-luna$1 / $61.05M128K2026-02-16Low-cost, high-throughput batch jobs

Source: developers.openai.com/api/docs/models (GPT-5.6 family entries), fetched 2026-07-14.

Shared across all three tiers: 1.05M context, 128K max output, knowledge cutoff 2026-02-16, native multimodal input (text/image/audio/file), and reasoning.effort=none / low / medium / high / xhigh / max.

2. Selection decision tree

Walk these in order:

  1. Classification / extraction / translation at volume?gpt-5.6-luna + reasoning={"effort": "none"}
  2. Day-to-day chat / writing / long-document QA?gpt-5.6-terra + reasoning={"effort": "medium"}
  3. Long code / multi-step agent / complex planning?gpt-5.6-sol + reasoning={"effort": "high"} or xhigh
  4. Math contest / scientific analysis / max reasoning? → o-series reasoning model (reasoning.effort fixed at max)

To check "is this tier good enough": let the model self-grade output, auto-upgrade unsure requests to Sol, downgrade obviously cheap ones to Luna. The Responses API ships with a model router that does this for you.

3. Example — Responses API + Python

from openai import OpenAI

client = OpenAI()

response = client.responses.create(
    model="gpt-5.6",                    # alias for Sol; swap to gpt-5.6-terra or gpt-5.6-luna
    input=[
        {"role": "system", "content": "You are a senior Python mentor"},
        {"role": "user", "content": "Explain decorators in one sentence."},
    ],
    reasoning={"effort": "medium"},     # none / low / medium / high / xhigh / max
    max_output_tokens=200,
)

print(response.output_text)
print("tokens used:", response.usage.total_tokens)

To switch tier, change the model field:

  • Heavy reasoning → model="gpt-5.6-sol" + reasoning={"effort": "xhigh"}
  • High-throughput batch → model="gpt-5.6-luna" + reasoning={"effort": "none"}
  • Default daily → model="gpt-5.6-terra" + reasoning={"effort": "medium"}

4. Supporting models — keep them out of the main catalog

Use caseCurrent modelNotes
Voice flagshipGPT-Realtime-2.1 (2026-07-06)WebRTC / WebSocket; mid-conversation tool use
Voice cost-effectiveGPT-Realtime-2.1 mini (2026-07-06)Same as above, cheaper
Voice translationGPT-Realtime-Translate (2026-05-07)Streaming speech-to-speech
Voice STTGPT-Realtime-Whisper (2026-05-07)Realtime transcription
Image generationGPT Image 2 (2026-04-21)Replaces DALL·E 2/3 (removed 2026-05-12)
Embeddingstext-embedding-3-large / text-embedding-3-smallVector search
TranscriptionGPT-Realtime-Whisper / GPT-4o Transcribe / GPT-4o mini TranscribeAudio → text
Videosora-2 / sora-2-pro1080p since 2026-03-12

Deprecation history:

  • 2026-05-12: DALL·E 2 / DALL·E 3 and the Realtime API Beta were removed from the API.
  • Pre-2026-07 lineage: GPT-5 / GPT-5.5 / GPT-5.4 / GPT-5.3 / GPT-5.2 were each successive iterations; GPT-5.6 is now the public-facing flagship.

5. Migration — coming from older models

If you are still on older models:

  1. GPT-4o / GPT-4 Turbo / GPT-4.1gpt-5.6-terra (closest behavioural match)
  2. o1 / o1 pro / o3-mini / o-seriesgpt-5.6-sol + reasoning={"effort": "high"} or xhigh
  3. GPT-5 / GPT-5.5 / GPT-5.5 Progpt-5.6-sol
  4. DALL·E 3GPT Image 2 (DALL·E 3 is now removed)
  5. gpt-4o-realtime-preview (old id)GPT-Realtime-2.1 or 2.1 mini
  6. Chat Completions (messages field)Responses API (input field)

6. Common errors and fixes

  • 401: invalid or expired API key — rotate it.
  • 429: rate limit hit — exponential backoff retries, or downgrade from Sol to Terra / Luna.
  • 400: bad request. Common causes: passing messages to the Responses API (use input), or oversized images in Sol's context. Resize the image, trim input.
  • Poor quality output: bump reasoning.effort from low to medium / high, or switch to Sol. Trim the prompt.
  • Too slow: drop Sol to Terra; or keep Sol but lower reasoning.effort to low.

7. Next steps

After this article, read:

  • The OpenAI Models Release Notes (living document)
  • OpenAI API Beginner: Your First GPT-5.6 Call
  • ChatGPT Complete Guide (2026): From Beginner to Expert

Data source and fetch date: GPT-5.6 family descriptions, pricing, context, and knowledge cutoff on this page come from developers.openai.com/api/docs/models and developers.openai.com/api/docs/changelog, fetched on 2026-07-14. We re-fetch and update dataSourcedAt whenever there is a material change; when in doubt, the official pages win.

Key points

  • All three GPT-5.6 tiers share: 1.05M context, 128K output, knowledge cutoff 2026-02-16, native multimodal input; only price / speed / default capability differ
  • GPT-5.6 Sol: $5 / $30 per MTok, 'Frontier model for complex professional work'
  • GPT-5.6 Terra: $2.50 / $15 per MTok, 'GPT-5.6 model that balances intelligence and cost' — day-to-day workhorse
  • GPT-5.6 Luna: $1 / $6 per MTok, 'GPT-5.6 model optimized for cost-sensitive workloads' — batch jobs, classification, extraction
  • Same API call works for all three; switch by `model` alias; depth via reasoning.effort=none→max — no front-end code changes
  • Chat Completions is now in legacy status; new projects should use the Responses API (`input` field, not `messages`)
  • As of 2026-05-12: DALL·E 2/3 and the Realtime API Beta are removed from the API; use GPT Image 2 and GPT-Realtime-2.1 instead

Frequently asked questions

Yes. Source: developers.openai.com/api/docs/changelog entry 'Released the GPT-5.6 model family, including GPT-5.6 Sol, GPT-5.6 Terra, and GPT-5.6 Luna' on 2026-07-09. It supersedes the 2024-2025 mix of GPT-4o / o1 / o3 / GPT-4.1 / GPT-4.5.

Official references

Subscribe to GPTMap Weekly

One email every Monday: curated OpenAI updates, deep dives, and best practices. No ads, unsubscribe anytime.

GPTMap EditorialPublished 2026-07-14 4 min read
Test environment (EEAT)
Last tested: 2026-07-14
Model used: gpt-5.6