OpenAI launched GPT-6 Sol and GPT-6 Luna on September 22, 2026, cutting API token pricing by 50% compared to predecessor models.
The 5-second version
OpenAI launched GPT-6 Sol and GPT-6 Luna on September 22, 2026. API token prices are reduced by 50% compared to predecessor rates. Models are live today via gpt-6-sol and gpt-6-luna API endpoints.
Keep reading for the full breakdown ↓
OpenAI launched GPT-6 Sol and GPT-6 Luna on September 22, 2026, expanding its GPT-6 model family with two lower-cost API options that cut token prices by 50% compared to predecessor models. Positioned directly below the flagship GPT-6 Astra model that debuted earlier in the month, Sol and Luna bring frontier capabilities to daily developer workflows at significantly reduced operating costs. Both models are immediately available to developers through OpenAI's API under the model identifiers gpt-6-sol and gpt-6-luna.
The release targets software developers and enterprise teams who require scalable AI reasoning without paying top-tier pricing for routine computational tasks. OpenAI trained both GPT-6 Sol and GPT-6 Luna using optimization techniques similar to those applied to GPT-6 Astra. The result is a pair of API-only models designed to balance intelligence, processing latency, and execution cost across diverse software workflows.
API Integration and Code Implementation
Developers can begin calling the new models immediately using standard OpenAI SDK pipelines. Because GPT-6 Sol and GPT-6 Luna are API-only releases, integration requires updating the target model parameter in existing API request handlers. Below is a complete Python example using the official OpenAI client library to send a completion request to the gpt-6-sol endpoint:
from openai import OpenAI
client = OpenAI()
response = client.chat.completions.create(
model="gpt-6-sol",
messages=[
{"role": "system", "content": "You are an expert software engineer."},
{"role": "user", "content": "Write a Python function to parse JSON safely."}
]
)
print(response.choices[0].message.content)
To route lower-complexity tasks to the faster, budget-friendly Luna model, developers simply swap the model parameter string to gpt-6-luna in their request configuration:
from openai import OpenAI
client = OpenAI()
response = client.chat.completions.create(
model="gpt-6-luna",
messages=[
{"role": "system", "content": "You are a lightweight developer assistant."},
{"role": "user", "content": "Summarize these system status logs."}
]
)
print(response.choices[0].message.content)
Meet GPT-6 Sol and Luna, two models that bring frontier intelligence to everyday work with different balances of capability and cost.
OpenAI
API Pricing Reductions and Hardware Execution Speeds
Related: OpenAI Launches GPT-6 Astra, Sol, and Luna with 50% Price Cuts
The primary highlight of the GPT-6 Sol and Luna release is API cost reduction. OpenAI confirmed that both new models feature token price cuts of 50% or more when compared against earlier promotional rates for the GPT-5.6 generation. Primary OpenAI documentation for GPT-5.6 Sol listed pricing at $5.00 per 1 million input tokens and $30.00 per 1 million output tokens, while GPT-5.6 Luna input pricing was listed at $1.00 per 1 million tokens.
However, secondary sources state differing baseline numbers for the prior model generation. According to alternative reports, GPT-5.6 promotional pricing stood at $4.00 input and $20.00 output per 1 million tokens for Sol, alongside $0.20 input and $1.20 output per 1 million tokens for Luna. Despite these conflicting reports regarding baseline numbers, the new release effectively halves the token expense for developers transitioning to GPT-6 Sol and Luna.
In terms of hardware execution speed, OpenAI previously demonstrated fast throughput capabilities with earlier model variations. During hardware testing in July, GPT-5.6 Sol achieved processing speeds up to 750 tokens per second when executing on specialized Cerebras hardware infrastructure. While OpenAI has not published hardware-specific execution benchmarks for the newly released GPT-6 Sol, the underlying architectural improvements aim to maintain fast inference across enterprise workloads.
Comparing GPT-6 Sol and Luna Against Earlier Models
To evaluate how GPT-6 Sol and GPT-6 Luna fit into OpenAI's model tier structure, the following table details the target positioning and historical pricing reference points reported across primary and secondary documentation:
| Model | Hierarchy Tier | Historical Input Price (per 1M) | Historical Output Price (per 1M) |
|---|
| GPT-6 Astra | Top-tier frontier model | Unspecified | Unspecified |
| GPT-6 Sol | Mid-tier balanced model | 50% below predecessor rate | 50% below predecessor rate |
| GPT-6 Luna | Budget high-speed model | 50% below predecessor rate | 50% below predecessor rate |
| GPT-5.6 Sol | Predecessor mid-tier model | $5.00 ($4.00 in secondary reports) | $30.00 ($20.00 in secondary reports) |
| GPT-5.6 Luna | Predecessor budget model | $1.00 ($0.20 in secondary reports) | Unspecified ($1.20 in secondary reports) |
Performance Benchmarks and the Competitive AI Landscape
While OpenAI emphasizes the cost reductions of GPT-6 Sol and GPT-6 Luna, independent performance analyses provide a more cautious perspective on raw intelligence gains. Evaluators noted that while both models cut token prices by half, they deliver capability levels that closely track their immediate predecessors rather than setting new state-of-the-art benchmark records. Independent findings indicate that GPT-6 Sol and Luna barely move the needle on core performance benchmarks, functioning primarily as price-performance optimizations.
This positioning places OpenAI's new models in direct competition with rival developer platforms, particularly Anthropic. The launch of GPT-6 Sol and Luna occurred alongside Anthropic's release of Claude Opus 5.5, which joins Anthropic's existing model offerings including Claude Opus 5, Claude Fable 5, and Claude Fable 5.1. By lowering the cost of GPT-6 capabilities, OpenAI is actively targeting Anthropic's developer user base with more competitively priced token options.
Unverified Features and Product Line Uncertainties
Alongside the main API launch details, specific technical claims and product references remain unconfirmed. Some third-party analysis reports suggest that GPT-6 Sol and GPT-6 Luna include upgraded prompt caching capabilities that yield discounts up to 90%. However, this 90% prompt caching claim is UNVERIFIED and has not been confirmed in primary OpenAI documentation; developers should check official pricing schedules directly for confirmed caching rates.
Furthermore, uncertainties exist regarding a model variant named "Terra." While third-party technical commentary previously mentioned Terra alongside Sol and Luna within OpenAI's model family discussions, OpenAI's latest launch focused strictly on GPT-6 Sol and GPT-6 Luna. The official release status, target specifications, and availability of any Terra model remain unconfirmed.
Deployment Guidance for Development Teams
For engineering teams integrating these models into software applications, GPT-6 Sol provides a balanced foundation for moderate reasoning, automated code generation, and multi-turn conversational agents. Developers utilizing developer tools such as GitHub Copilot or Codex workflows can route mid-tier API calls to gpt-6-sol to maintain quality without incurring Astra-level API pricing.
Conversely, GPT-6 Luna is tailored for high-volume tasks where execution speed and minimal cost are primary requirements. While budget models like Luna show weaker multi-step reasoning performance when compared to Sol or Astra on highly complex logic problems, Luna offers a cost-effective engine for text extraction, classification, and fast data processing. Development teams can begin updating their API environment configurations to leverage gpt-6-sol and gpt-6-luna immediately.
Sources
Discussion
0 commentsNo comments yet. Be the first to share your take.