GPT-6 Sol vs Luna, GPT-5.6, and the competition
GPT-6 Sol is the flagship tier of the GPT-6 family that OpenAI shipped on 22 September 2026. Against GPT-5.6 Sol it is exactly half the price per token in both directions at the same flagship capability tier, which is the single biggest reason to migrate. Luna is the cheap tier of the same generation and handles most routine traffic at a twentieth of Sol's input cost.
List prices below are per 1M tokens. The AIReiter column is what you actually pay here, which is 30% of the official rate.
| Model | Official input | Official output | Cached input | AIReiter input | AIReiter output |
|---|---|---|---|---|---|
| GPT-6 Sol | $2.00 | $10.00 | $0.20 | $0.60 | $3.00 |
| GPT-6 Luna | $0.10 | $0.50 | $0.01 | - | - |
| GPT-5.6 Sol | $4.00 | $20.00 | $0.40 | $1.20 | $6.00 |
| Claude Opus 5.5 | $4.00 | $20.00 | - | - | - |
| Gemini 3.8 Flash | $0.75 | $3.75 | - | - | - |
Official list prices as published by each vendor in September 2026. Gemini 3.8 Flash is on introductory pricing through 31 December 2026 and rises to $1.50 / $7.50 on 1 January 2027. Anthropic cut Opus 5.5 to $4 / $20 from $5 / $25, which still leaves it at twice the list price of GPT-6 Sol.
One caveat worth knowing before you migrate: cheaper does not mean uniformly stronger. Independent comparisons published at launch found GPT-5.6 Sol still scoring higher than GPT-6 Sol on some coding and computer-use benchmarks. Run your own evaluations on your own traffic before you switch a production route.
Call GPT-6 Sol from your code
The endpoint is OpenAI-compatible, so any client that already speaks the Chat Completions protocol works by changing two lines: the base URL and the API key. The model ID is gpt-6-sol.
curl
curl https://aireiter.com/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $AIREITER_API_KEY" \
-d '{
"model": "gpt-6-sol",
"messages": [{"role": "user", "content": "Explain how a 429 response should be retried."}],
"reasoning_effort": "medium",
"stream": true
}'
Python (openai SDK)
from openai import OpenAI
client = OpenAI(
base_url="https://aireiter.com/api/v1",
api_key="YOUR_AIREITER_API_KEY",
)
stream = client.chat.completions.create(
model="gpt-6-sol",
messages=[{"role": "user", "content": "Explain how a 429 response should be retried."}],
reasoning_effort="medium",
stream=True,
)
for chunk in stream:
delta = chunk.choices[0].delta.content
if delta:
print(delta, end="")
Node (openai SDK)
import OpenAI from "openai"
const client = new OpenAI({
baseURL: "https://aireiter.com/api/v1",
apiKey: process.env.AIREITER_API_KEY,
})
const stream = await client.chat.completions.create({
model: "gpt-6-sol",
messages: [{ role: "user", content: "Explain how a 429 response should be retried." }],
reasoning_effort: "medium",
stream: true,
})
for await (const chunk of stream) {
process.stdout.write(chunk.choices[0]?.delta?.content ?? "")
}
Agent CLIs use the same credentials. Codex CLI and other OpenAI-compatible clients point at https://aireiter.com/api/v1, and Claude Code points at https://aireiter.com/api. Grab a key on the API keys page and see the LLM API integration guide for per-client setup.
What GPT-6 Sol actually costs you
Per-token rates are hard to reason about, so here is the arithmetic on three realistic workloads at AIReiter's rate of $0.60 input and $3.00 output per 1M tokens.
| Workload | Per request | Cost per 1,000 requests |
|---|---|---|
| Support reply | 2K in / 500 out | $2.70 |
| Code review on a diff | 20K in / 2K out | $18.00 |
| Agent step with tool results | 50K in / 4K out | $42.00 |
Two levers move these numbers more than anything else:
- Cached input reads cost $0.06 per 1M, a tenth of a fresh read. A stable system prompt and a stable context prefix are the cheapest optimization available. OpenAI raised default cache hit rates for this generation and lets you set an explicit breakpoint for where the cached prefix ends, and you can change reasoning effort or toggle tools without losing the cached context.
- Requests above 272K input tokens are surcharged, at 2x on input and 1.5x on output, following OpenAI's own tiering. Crossing that line roughly doubles your input bill, so trimming a 300K-token context back under the threshold is usually worth more than any prompt tuning.
Output tokens cost 5x what input tokens cost. If responses are running long, capping max completion tokens or lowering verbosity moves the bill more than shortening the prompt does.
Quando usare GPT-6 Sol e quando evitarlo
Quando usarlo: debug multi-file
Bug la cui causa risiede nell'interazione tra moduli piuttosto che in una singola funzione, dove un modello più economico continuerebbe a correggere solo il sintomo.
Quando usarlo: agenti a lungo termine
Piani che devono gestire decine di chiamate a tool, fallimenti parziali e revisioni senza perdere il filo. La finestra di contesto da 1M di token contiene l'intera traiettoria.
Quando usarlo: decisioni con compromessi
Scelte architetturali e di migrazione in cui l'output utile è un confronto onesto e non una raccomandazione categorica.
Quando non usarlo: traffico di routine
Classificazione, estrazione, riassunto e risposte di supporto di primo livello. GPT-6 Luna costa un ventesimo per l'input e gestisce questi compiti in modo affidabile. Indirizza a Sol solo dopo che un modello più economico ha fallito in modo misurabile.
Prova GPT-6 Sol in tre passaggi
Nessuna installazione e nessuna configurazione. Il playground qui sopra utilizza lo stesso endpoint che chiamerà il tuo codice.
Imposta lo sforzo di ragionamento
Inizia con il livello medio. Aumentalo per i problemi che richiedono una pianificazione prima della risposta, abbassalo quando la latenza è più importante della profondità.
Invia un prompt
Incolla un task reale anziché un esempio banale. Il consumo di token e crediti viene mostrato sotto ogni risposta, consentendoti di calcolare il costo del carico di lavoro prima di procedere.
Copia la chiamata API
Trasferisci la stessa richiesta nel tuo codice usando l'ID modello gpt-6-sol verso l'endpoint compatibile con OpenAI. Tutto il resto nel tuo client rimane invariato.
FAQ su GPT-6 Sol
Domande su prezzi, funzionalità e migrazione.
/ 01Quanto costa GPT-6 Sol su AIReiter?
$0,60 per 1M di token di input e $3,00 per 1M di token di output, pari al 30% dei $2,00 e $10,00 ufficiali di OpenAI. Le letture di input da cache costano $0,06 per 1M contro i $0,20 ufficiali.
/ 02GPT-6 Sol è migliore di GPT-5.6 Sol?
Costa la metà per lo stesso livello flagship, ed è un chiaro vantaggio. Sulle capacità il quadro è più sfumato: i confronti pubblicati al lancio hanno mostrato che GPT-5.6 Sol è ancora avanti su alcuni benchmark di programmazione e computer-use. Valuta sul tuo traffico reale prima di modificare il routing di produzione.
/ 03Dovrei usare Sol o Luna?
Luna per tutte le attività di routine, a $0,10 per 1M di token di input contro i $2,00 di Sol. Sol per il codice complesso, lunghe catene di ragionamento e agenti che devono recuperare da passaggi non riusciti. Uno stack con routing che escala a Sol solo in caso di errore costa una frazione rispetto a inviare tutto a Sol.
/ 04Qual è la finestra di contesto?
Circa 1M di token di input con un massimo di 128K token di output. Le richieste superiori a 272K token di input comportano il sovrapprezzo di OpenAI pari a 2x sull'input e 1,5x sull'output, quindi rimanere al di sotto di tale soglia incide notevolmente sui costi.
/ 05Supporta il prompt caching?
Sì, ed è la leva di riduzione dei costi più vantaggiosa disponibile. Le letture di input memorizzate nella cache beneficiano di uno sconto del 90%, e questa generazione consente di impostare un breakpoint esplicito per definire dove termina il prefisso in cache e modificare il reasoning effort o abilitare/disabilitare i tool senza invalidare la cache.
/ 06Come posso chiamarlo da Claude Code o Codex CLI?
Entrambi funzionano senza modifiche con una chiave AIReiter. Codex CLI e gli altri client compatibili con OpenAI utilizzano https://aireiter.com/api/v1, mentre Claude Code utilizza https://aireiter.com/api. L'ID del modello è gpt-6-sol.
/ 07Quando è stato rilasciato GPT-6 Sol?
OpenAI ha rilasciato GPT-6 Sol e GPT-6 Luna il 22 settembre 2026, 19 giorni dopo GPT-6 Astra, insieme a una riduzione di circa il 50% dei prezzi delle API per token su tutta la famiglia.