GPT-6 Sol and Luna for Product Managers: The Complete Tier Guide
TL;DR
On September 22, 2026, OpenAI completed the GPT-6 family by releasing Sol ($2/$10 per million tokens) and Luna ($0.50/mtok) alongside the existing GPT-6 Astra flagship. Sol is the mid-tier: strong enough for most production AI features. Luna is purpose-built for high-volume, structured tasks where cost is the primary constraint. The three-tier family is the clearest signal yet that the industry has moved from a one-model-fits-all model to deliberate tier routing. This guide tells you what each model actually does, how they differ from the GPT-5.x generation, and how to build a pricing and routing strategy around the full GPT-6 family.
The AI PM Minute
One tactic to make you a sharper AI PM, twice a week. 60 seconds to read. Free.
No fluff. Unsubscribe anytime.
The GPT-6 Three-Tier Family
GPT-6 is OpenAI's first model family to ship with explicit commercial tiers from launch day. Astra (September 3) set the capability ceiling. Sol and Luna (September 22) fill the volume and cost positions below it. This is a deliberate portfolio play: every price point, from maximum reasoning to maximum throughput, now has a GPT-6 SKU.
GPT-6 Astra
Flagship / Best reasoningPricing: Undisclosed API pricing at launch; available to select partners
Best for: Complex multi-step reasoning, novel tasks, high-stakes decisions where errors are costly
GPT-6 Sol
Mid-tier / Balanced quality and costPricing: $2 input / $10 output per million tokens
Best for: Most production AI features: code generation, content, analysis, structured output
GPT-6 Luna
High-volume / Cost-optimizedPricing: $0.50 per million tokens (input and output)
Best for: Summarization, extraction, classification, Q&A at scale where clear goals exist
The GPT-5.x generation (5.5, 5.6 Sol, 5.6 Terra Luna) used incrementally different model IDs that required individual evaluation to understand capability tradeoffs. GPT-6 makes the hierarchy explicit in the name. This matters for product architecture: you can now design routing rules around a named tier rather than a specific model ID.
GPT-6 Luna: The High-Volume Workhorse
Luna is OpenAI's answer to a question every high-scale AI product team eventually asks: "What is the cheapest capable model for tasks that have a clear right answer?" At $0.50 per million tokens, Luna is approximately 4x cheaper than Sol and represents OpenAI's direct competition to high-volume open-weight alternatives.
1,050,000-token context window
Luna ships with a 1.05 million token context window, with 922,000 tokens of maximum input and 128,000 tokens of maximum output. For document processing tasks, this means an entire legal contract, financial report, or product spec can fit in a single call.
Knowledge cutoff: May 18, 2026
Luna's training data cuts off May 18, 2026. For time-sensitive tasks (recent news analysis, current events), plan for retrieval augmentation. For most business document tasks, the cutoff is not a constraint.
Text and image input
Luna accepts text and image inputs, returning text output. This covers the majority of structured extraction use cases: receipt parsing, invoice extraction, document understanding, form processing.
Availability at launch
Available in ChatGPT Work and Codex for Plus, Pro, Business, Enterprise, and Edu users. Free and Go tier users can access Luna in the desktop app, making it the most broadly accessible GPT-6 model at launch.
What Luna is explicitly designed for, in OpenAI's own framing: "high-volume tasks with a clear goal, like summarizing documents, extracting information, or answering quick questions." That phrase is a product specification, not just marketing copy. Luna was tuned for reliability on well-defined tasks, not for open-ended reasoning. If your use case has a ground truth to measure against, Luna is the right starting point.
When Luna is the wrong choice
Luna underperforms on tasks that require synthesizing ambiguous inputs, generating creative long-form content, or navigating nuanced multi-step reasoning chains. If your system prompt contains phrases like "consider multiple perspectives" or "weigh the tradeoffs," Luna may produce flatter outputs than Sol. The test is simple: run both on your real eval set before committing.
GPT-6 Sol: The Mid-Tier That Replaces GPT-4-Class Models
Sol sits between Astra and Luna in the capability-cost curve. At $2/$10 per million input/output tokens, it is priced similarly to where GPT-4 class models were in 2024, but it ships with GPT-6 generation quality. Sol is the tier that most production AI features should target in late 2026.
What Sol does better than Luna
- +Open-ended content generation where tone and style matter
- +Multi-step reasoning tasks with intermediate conclusions
- +Complex instruction following with multiple constraints
- +Tasks where the output will be read directly by users without editing
What Sol does comparably to Astra
- +Most standard business analysis and summarization
- +Code generation and review for common patterns
- +Customer-facing writing at medium quality level
- +Structured data extraction from moderately complex documents
Where Sol underperforms Astra
- +Novel technical reasoning requiring multi-step scientific inference
- +Tasks where state-of-the-art benchmark performance is required
- +High-stakes decisions where a reasoning error is costly
- +Cutting-edge code tasks involving unfamiliar APIs or architectures
The practical heuristic: use Sol as your default production model for new AI features. Then route down to Luna for any task your eval confirms is well-defined, and route up to Astra for any task where Sol produces outputs that require substantial human correction.
Learn How to Build With the GPT-6 Family
The AI PM Masterclass covers model selection, cost architecture, and building products across the full AI model stack, taught live by a Salesforce Sr. Director PM.
The Economics: What the Three-Tier Structure Means for Your Cost Model
The GPT-6 family creates a 20x cost range within a single provider. Luna at $0.50/mtok versus Astra is approximately a 20x difference on equivalent tasks. For a product processing one billion tokens per month, routing 70% of traffic to Luna versus Sol can mean the difference between a $500K and a $2M annual inference bill.
1B tokens/month, all Sol
Baseline for typical production workload
~$2,000 per month (input-heavy workload at $2/mtok)
1B tokens/month, 70% Luna / 30% Sol
52% cost reduction versus all-Sol routing
~$950 per month
1B tokens/month, 70% Luna / 25% Sol / 5% Astra
Best quality-cost balance for tiered workloads
~$1,000 per month plus Astra premium
The catch: routing logic is not free. You need evals to confirm Luna is producing acceptable quality on each task type before you route to it in production. A Luna routing decision that produces 5% more user-corrected outputs eliminates the cost savings fast. Build your eval harness before you build your router.
Building a GPT-6 Routing Architecture
A routing architecture assigns each request type in your product to the appropriate GPT-6 tier at call time. The goal is minimum cost at acceptable quality, not maximum quality everywhere. Here is a practical framework for building one.
Inventory your AI call types
List every place your product calls an LLM. Categorize each by: (a) Is there a clear right answer? (b) Will the output be read directly by users? (c) How costly is an error? High on (b) and (c) routes to Sol or Astra. Low on both routes to Luna.
Build task-specific evals for Luna candidates
For each call type you plan to route to Luna, define a pass/fail eval. Run 200 to 500 examples through Luna and measure the pass rate. A pass rate below your quality threshold means Sol is the right tier, not Luna.
Implement routing at the abstraction layer
Do not scatter model IDs across your codebase. Build a routing layer that maps task types to models. When Luna or Sol improves, you update one config, not dozens of call sites. This also lets you shadow-test new models without a full deployment.
Monitor quality signals in production
Track error rates, correction rates, and user satisfaction metrics by model tier. A Luna routing decision that looks correct in evals may degrade in production as your user distribution shifts. Set alerts on quality signal drift.
GPT-6 Sol and Luna vs. the GPT-5.x Generation
Products currently running on GPT-5.5, GPT-5.6 Sol, or GPT-5.6 Terra Luna should evaluate migration to the GPT-6 tier. The GPT-6 generation ships with improved instruction following, better structured output reliability, and a longer context window. The migration is not automatic: GPT-6 models may produce different outputs for the same prompt, and your existing evals need to run clean before you promote.
GPT-5.6 Sol vs. GPT-6 Sol
GPT-6 Sol is generally stronger at complex reasoning and produces more consistent structured outputs. Price point is similar. If you are running GPT-5.6 Sol in production today, evaluating GPT-6 Sol is worth the sprint. Expect to tune system prompts: GPT-6 generation models follow instructions more literally.
GPT-5.6 Terra Luna vs. GPT-6 Luna
GPT-6 Luna is significantly cheaper and ships with a dramatically larger context window (1.05M vs. 128K for Terra Luna). For high-volume document tasks, the upgrade path is clear. Run your extraction and summarization evals on both before switching.
GPT-4.x generation vs. GPT-6 Luna
GPT-4-era products running on GPT-4o Mini or GPT-4 Turbo should benchmark GPT-6 Luna. It is a direct mid-quality replacement at a much lower price point, with a significantly larger context window.
OpenAI's deprecation timeline
OpenAI has historically deprecated older model generations 12 months after launching a replacement. Plan your GPT-6 migration sprint for Q4 2026. Do not wait for a deprecation notice to start evaluation.
Ship Better AI Products With Better Model Decisions
The AI PM Masterclass covers model selection, cost architecture, evaluation frameworks, and building production AI products, taught live by a Salesforce Sr. Director PM.
Related Articles
Before you go: get the AI PM Minute
One tactic to make you a sharper AI PM, twice a week. 60 seconds to read. Free.
No fluff. Unsubscribe anytime.