AIREITER
OpenAIText Chat

GPT-6 Sol

以 OpenAI 官方費率的 30% 運行 GPT-6 Sol:每 1M 輸入 $0.60、每 1M 輸出 $3.00。與 GPT-6 Luna、GPT-5.6 Sol、Opus 5.5 及 Gemini 3.8 Flash 進行對比,並可直接複製貼上 curl、Python 和 Node 程式碼進行調用。

輸入 Token输入输出缓存读取缓存创建
≤ 271,999$0.60 每 100 萬 Tokens$3.00 每 100 萬 Tokens$0.06 每 100 萬 Tokens$0.75 每 100 萬 Tokens
> 271,999$1.20 每 100 萬 Tokens$4.50 每 100 萬 Tokens$0.12 每 100 萬 Tokens$1.50 每 100 萬 Tokens

價格按每百萬 token 計。按包含快取讀寫的總輸入 token 數選擇級距,整次請求按該級距計費。

使用 API 執行

輸入

輸出

Example
Generated in
42.7 seconds
輸入 Token
134
輸出 Token
2354
Tokens per second
55.13 tokens / second
Time to first token
-

模型詳情

在 Playground、API 請求與內部工作流程中使用相同的模型鍵。

模型 ID
gpt-6-sol
供應商
OpenAI
協定
OpenAI Chat Completions
上下文視窗
1,050,000 Token
最大輸出
128,000 Token

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.

ModelOfficial inputOfficial outputCached inputAIReiter inputAIReiter 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.

WorkloadPer requestCost per 1,000 requests
Support reply2K in / 500 out$2.70
Code review on a diff20K in / 2K out$18.00
Agent step with tool results50K 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,何時不該使用

Sol 是升級梯隊。將所有請求都路由至 Sol 是最常見且代價最高昂的錯誤。
01

適用場景:多檔案除錯

錯誤根源在於模組之間的互動而非單一函式,且較便宜的模型往往只能治標不治本的情況。

02

適用場景:長流程 Agent

必須經歷十幾次工具調用、部分失敗及反覆修正且不失脈絡的計畫。其 1M token 上下文視窗可容納完整的執行軌跡。

03

適用場景:權衡決策

架構決策與系統遷移評估,這類場景中真正有價值的輸出是客觀誠實的對比,而非盲目自信的推薦。

04

不適用場景:常規流量

分類、擷取、摘要以及第一線客服回覆。GPT-6 Luna 的輸入成本僅為其二十分之一,且能穩定完成這些任務。請僅在平價模型明確無法勝任時,再將流量轉發給 Sol。

三步驟上手 GPT-6 Sol

無需安裝,無需設定。上方的 Playground 使用的端點與您程式碼將調用的完全相同。

01

設定推理強度

建議從中等(medium)開始。針對需要模型在回答前預先規劃的問題可調高設定;當延遲比思考深度更重要時則調低。

02

發送提示詞

貼上您的實際任務而非玩具任務。每次回應下方都會回報 Token 使用量與消耗額度,讓您在正式採用前評估工作負載成本。

03

複製 API 調用代碼

使用模型 ID gpt-6-sol 向相容於 OpenAI 的端點發送相同請求,並整合至您的程式碼中。用戶端無需更改其他任何設定。

GPT-6 Sol 常見問題

定價、功能與遷移相關問題。

/ 01

GPT-6 Sol 在 AIReiter 上的費用是多少?

每 1M 輸入 tokens 為 $0.60,每 1M 輸出 tokens 為 $3.00,僅為 OpenAI 官方定價($2.00 與 $10.00)的 30%。快取輸入讀取費用為每 1M $0.06,低於官方的 $0.20。

/ 02

GPT-6 Sol 比 GPT-5.6 Sol 更好嗎?

在同屬旗艦級別的情況下,它的價格只有一半,這是一個明顯的優勢。在能力方面則各有千秋:發布時的評測顯示,GPT-5.6 Sol 在部分程式設計與電腦操作(computer-use)基準測試中仍處於領先地位。在切換生產環境路由之前,請先針對您的實際流量進行評估。

/ 03

我應該選擇 Sol 還是 Luna?

常規任務請使用 Luna,其每 1M 輸入僅需 $0.10,而 Sol 則為 $2.00。Sol 適用於複雜程式碼、長推理鏈以及需要從失敗步驟中恢復的 Agent。建立僅在失敗時才升級至 Sol 的路由架構,其成本遠低於將所有請求都直接發送給 Sol。

/ 04

上下文視窗有多大?

約 1M 輸入 token 與高達 128K 輸出 token。超過 272K 輸入 token 的請求需支付 OpenAI 的附加費用(輸入 2 倍、輸出 1.5 倍),因此維持在該門檻以下能顯著降低費用。

/ 05

它是否支援 Prompt 快取?

支援,而且這是目前最具效益的成本控制手段。讀取快取的輸入可享 90% 折扣,且此世代允許您明確設定快取前綴的結束中斷點,並可在不使快取失效的情況下調整推理力度(reasoning effort)或切換工具。

/ 06

如何透過 Claude Code 或 Codex CLI 呼叫它?

兩者均可直接搭配 AIReiter 金鑰使用。Codex CLI 與其他相容 OpenAI 的用戶端請使用 https://aireiter.com/api/v1,Claude Code 請使用 https://aireiter.com/api。模型 ID 為 gpt-6-sol。

/ 07

GPT-6 Sol 是何時發布的?

OpenAI 於 2026 年 9 月 22 日(即 GPT-6 Astra 發布 19 天後)推出了 GPT-6 Sol 與 GPT-6 Luna,同時將整個系列每個 token 的 API 價格調降了約 50%。