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.
Когда стоит и когда не стоит использовать GPT-6 Sol
Подходит для: отладки нескольких файлов
Ошибки, причина которых кроется во взаимодействии между модулями, а не в одной функции, когда более дешевая модель лишь устраняет симптомы.
Подходит для: агентов с длинным горизонтом планирования
Планы, которые должны выдерживать десятки вызовов инструментов, частичные сбои и корректировки без потери контекста. Окно в 1 млн токенов вмещает всю траекторию.
Подходит для: решений с компромиссами
Архитектурные задачи и миграции, где ценным результатом является объективное сравнение, а не безапелляционная рекомендация.
Не подходит для: рутинных задач
Классификация, извлечение данных, суммаризация и ответы первой линии поддержки. GPT-6 Luna обходится в 20 раз дешевле по входным токенам и надежно справляется с этим. Перенаправляйте запросы на Sol только тогда, когда более дешевая модель очевидно не справляется.
Попробуйте GPT-6 Sol за три шага
Никаких установок и настроек. Playground выше работает через тот же эндпоинт, к которому будет обращаться ваш код.
Настройте глубину рассуждений
Начните со значения medium. Увеличивайте его для задач, где модели нужно спланировать шаги перед ответом, и уменьшайте, когда задержка важнее глубины.
Отправьте запрос
Вставьте реальную задачу вместо учебного примера. Расход токенов и списанные кредиты отображаются под каждым ответом, что позволяет оценить затраты до внедрения.
Скопируйте вызов API
Перенесите тот же запрос в свой код с идентификатором модели gpt-6-sol на эндпоинт, совместимый с OpenAI. Менять что-либо еще в клиенте не потребуется.
FAQ по GPT-6 Sol
Вопросы о ценообразовании, возможностях и миграции.
/ 01Сколько стоит GPT-6 Sol на AIReiter?
$0.60 за 1 млн входных токенов и $3.00 за 1 млн выходных токенов, что составляет 30% от официальных тарифов OpenAI ($2.00 и $10.00). Чтение кэшированного контекста стоит $0.06 за 1 млн по сравнению с официальными $0.20.
/ 02GPT-6 Sol лучше, чем GPT-5.6 Sol?
Она в два раза дешевле при том же флагманском уровне, и это явное преимущество. По возможностям картина неоднозначна: тесты на момент запуска показали, что GPT-5.6 Sol все еще лидирует в некоторых бенчмарках по написанию кода и computer-use. Протестируйте на собственном трафике, прежде чем переключать продакшн.
/ 03Что выбрать: Sol или Luna?
Luna подходит для любых рутинных задач по цене $0.10 за 1 млн входных токенов против $2.00 у Sol. Sol нужна для сложного кода, длинных цепочек рассуждений и агентов, которым необходимо восстанавливаться после сбоев. Маршрутизация с перенаправлением на Sol только при ошибках обходится в разы дешевле, чем отправка всех запросов сразу на Sol.
/ 04Какой размер контекстного окна?
Примерно 1 млн входных токенов и до 128 тыс. выходных токенов. Для запросов объемом более 272 тыс. входных токенов действует наценка OpenAI в размере 2x на входные и 1.5x на выходные токены, поэтому нахождение ниже этого порога существенно влияет на итоговый счет.
/ 05Поддерживается ли prompt caching?
Да, и это самый мощный инструмент снижения затрат. Чтение кэшированного ввода дает скидку 90%, а в этом поколении можно явно указать точку остановки (breakpoint) окончания кэшированного префикса и изменять reasoning effort или переключать инструменты без сброса кэша.
/ 06Как вызывать модель из Claude Code или Codex CLI?
Оба инструмента работают без изменений с ключом AIReiter. Codex CLI и другие OpenAI-совместимые клиенты используют https://aireiter.com/api/v1, Claude Code — https://aireiter.com/api. Model ID — gpt-6-sol.
/ 07Когда вышла GPT-6 Sol?
OpenAI выпустила GPT-6 Sol и GPT-6 Luna 22 сентября 2026 года, через 19 дней после GPT-6 Astra, одновременно со снижением цен на токены API примерно на 50% для всей линейки.