AIREITER
OpenAIText Chat

GPT-6 Sol

以 OpenAI 官方价格的 30% 运行 GPT-6 Sol:每 100 万输入 Token 仅需 $0.60,每 100 万输出 Token 仅需 $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 请求和内部工作流中使用相同的模型 key。

模型 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 是进阶升级层。将所有请求无脑路由给它是最常见、也最昂贵的错误。
01

适用场景:多文件调试

对于起因在于模块间交互而非单一函数的 Bug,较便宜的模型往往只能治标不治本。

02

适用场景:长周期 Agent

需要在经历十几次工具调用、部分失败和修正后仍不偏离主线的复杂计划。100 万 Token 的上下文窗口可容纳完整轨迹。

03

适用场景:权衡利弊的决策

在架构设计和技术迁移决策中,最有价值的输出是客观中肯的权衡对比,而非盲目自信的单向建议。

04

不适用场景:常规流量

分类、提取、摘要和一线客服回复等任务。GPT-6 Luna 的输入成本仅为其二十分之一,且能可靠完成这些任务。仅在成本更低的模型明确无法胜任时,再将请求路由至 Sol。

三步上手 GPT-6 Sol

无需安装,无需繁琐配置。上方的演练场与您代码将调用的端点完全一致。

01

设置推理力度

建议从 medium(中等)开始。对于需要模型先规划再回答的问题可以提高该值;当延迟要求高于推理深度时可以降低该值。

02

发送 Prompt

请粘贴您的实际任务而非测试用例。每次响应下方都会显示 Token 用量和消耗的额度,以便您在正式接入前预估工作负载成本。

03

复制 API 调用代码

将相同的请求迁移至代码中,使用模型 ID gpt-6-sol 并请求兼容 OpenAI 的端点。您的客户端无需做其他任何更改。

GPT-6 Sol 常见问题

定价、功能及迁移相关问题。

/ 01

GPT-6 Sol 在 AIReiter 上的价格是多少?

每 100 万输入 Token 为 $0.60,每 100 万输出 Token 为 $3.00,相当于 OpenAI 官方价格($2.00 和 $10.00)的 30%。缓存输入读取费用为每 100 万 Token $0.06,而官方价格为 $0.20。

/ 02

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

在同等旗舰级别下,它的价格仅为一半,这是显而易见的优势。在能力方面则各有优劣:发布时的对比评测显示,GPT-5.6 Sol 在某些编程和计算机操作基准测试中仍处于领先地位。建议在切换生产路由前,先结合您自己的实际业务流量进行评估。

/ 03

我应该使用 Sol 还是 Luna?

所有常规任务推荐使用 Luna,其输入价格为每 100 万 Token $0.10(Sol 为 $2.00)。复杂的代码、长推理链以及需要从失败步骤中恢复的 Agent 则推荐使用 Sol。采用分流路由架构(仅在失败时升级至 Sol)的成本,远低于将所有请求直接发送给 Sol。

/ 04

上下文窗口有多大?

约 1M 输入 token,最多支持 128K 输出 token。输入 token 超过 272K 的请求需支付 OpenAI 的附加费(输入 2 倍,输出 1.5 倍),因此保持在该阈值以下会显著降低账单费用。

/ 05

是否支持 Prompt 缓存?

支持,而且这是最有效的成本优化手段。缓存的输入读取可享受 90% 的折扣,并且该代模型支持显式设置缓存前缀结束的断点,在调整 reasoning effort 或切换工具时不会导致缓存失效。

/ 06

如何通过 Claude Code 或 Codex CLI 调用它?

两者均可直接配合 AIReiter key 正常运行。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%。