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を使うべき場合と使わないべき場合
適した用途:複数ファイルのデバッグ
単一の関数ではなくモジュール間の相互作用に原因があり、安価なモデルでは対症療法的な修正に留まってしまうようなバグの解決。
適した用途:長期実行エージェント
文脈を見失うことなく、数十回のツール呼び出し、部分的な失敗、修正に耐える必要がある計画。1Mトークンのウィンドウが実行履歴全体を保持します。
適した用途:トレードオフを伴う意思決定
自信満々な推奨ではなく、客観的で公平な比較こそが有用なアウトプットとなる、アーキテクチャや移行に関する判断。
不適な用途:ルーティン処理
分類、抽出、要約、一次サポートの返答など。GPT-6 Lunaは入力コストが20分の1で、これらを確実に完了できます。安価なモデルで明確に失敗した場合にのみSolへルーティングしてください。
3つのステップでGPT-6 Solを試す
インストールもセットアップも不要です。上記のプレイグラウンドは、実際のコードから呼び出すのと同じエンドポイントで動作します。
推論労力(Reasoning Effort)の設定
まずはmediumから開始してください。回答前に綿密な計画が必要な問題では高く設定し、深さよりもレイテンシを重視する場合は低く設定します。
プロンプトの送信
テスト用の簡単なタスクではなく、実際のタスクを貼り付けてください。各レスポンスの下に使用トークン数と消費クレジットが表示されるため、本格導入前にワークロードのコストを見積もることができます。
API呼び出しのコピー
OpenAI互換エンドポイントに対してモデルID gpt-6-sol を指定し、同じリクエストをコードに組み込みます。クライアント側の変更はそれ以外不要です。
GPT-6 Sol FAQ
料金、機能、移行に関するよくある質問。
/ 01AIReiterでのGPT-6 Solの料金はいくらですか?
入力100万トークンあたり$0.60、出力100万トークンあたり$3.00で、OpenAI公式の$2.00および$10.00の30%です。キャッシュされた入力の読み取りは、公式の$0.20に対して100万トークンあたり$0.06です。
/ 02GPT-6 SolはGPT-5.6 Solよりも優れていますか?
同じフラッグシップティアでありながら価格が半額である点が明確な利点です。性能面については一概には言えず、リリース時の比較ではコーディングやコンピュータ操作(computer-use)の一部のベンチマークにおいてGPT-5.6 Solが依然として上回っていることが示されました。本番環境のルートを切り替える前に、実際のトラフィックで評価してください。
/ 03SolとLunaのどちらを使うべきですか?
ルーティン処理には、Solの$2.00に対して入力100万トークンあたり$0.10のLunaを使用します。Solは難解なコード、長い推論チェーン、失敗したステップから復旧する必要があるエージェントに適しています。失敗時にのみSolにエスカレーションするルーティング構成にすれば、すべてをSolに送る場合に比べてコストをわずか数分の一に抑えられます。
/ 04コンテキストウィンドウのサイズはどのくらいですか?
入力は約1Mトークン、出力は最大128Kトークンに対応しています。272K入力トークンを超えるリクエストには、入力2倍・出力1.5倍のOpenAI追加料金が適用されるため、このしきい値未満に抑えることで請求額が大幅に変わります。
/ 05プロンプトキャッシングに対応していますか?
はい、対応しており、最も効果的なコスト削減手段となります。キャッシュされた入力の読み取りには90%の割引が適用されます。また、この世代ではキャッシュプレフィックスが終了する明確なブレークポイントを設定でき、キャッシュを無効化することなくreasoning effortの変更やツールのオン/オフ切り替えが可能です。
/ 06Claude CodeやCodex CLIから呼び出すにはどうすればよいですか?
どちらもAIReiterキーを使用してそのまま動作します。Codex CLIおよびその他のOpenAI互換クライアントは https://aireiter.com/api/v1 を使用し、Claude Codeは https://aireiter.com/api を使用します。モデルIDは gpt-6-sol です。
/ 07GPT-6 Solはいつリリースされましたか?
OpenAIは、GPT-6 Astraのリリースから19日後の2026年9月22日にGPT-6 SolとGPT-6 Lunaをリリースしました。これと同時に、同ファミリー全体のトークンあたりのAPI価格が約50%引き下げられました。