GPT-6 Sol 是 OpenAI GPT-6 家族的均衡档,2026 年 9 月 22 日与 GPT-6 Luna 一同发布,OpenAI 将它定位于 GPT-6 Astra 旗舰之下、面向复杂编码与智能体工作流。
- 输入
- 文本 图像 $2/M
- 输出
- 文本 $10/M
- 缓存读取
- $0.2/M
- 上下文
- 1.1M
- 对比 GPT-4o
- 便宜约 60%
- 知识截止
- 2026-04
输入超过 272K tokens 时,整单按输入 $4/M、输出 $15/M 计价
Benchmark 成绩
价格在同类中的位置
价格在 67 个同类模型中的位置
这条线显示该模型的价格,在 Synthorai 上同类模型里处于什么位置。两端标出了最便宜和最贵的那个。这里是基础价,批量、区域和缓存写入的折扣见价格页。
规格与限制
Token
| 上下文窗口(厂商规格) | 1,050,000 |
|---|---|
| 最大输出(厂商规格) | 128,000 |
| 知识截止 | 2026-04 |
提示词缓存
| 缓存方式 | 自动 |
|---|---|
| 最低前缀 | 1,024 |
| 存活时间 | 5–10 分钟,最长 1 小时 |
思考
| 厂商参数 | reasoning.effort |
|---|---|
| 可选值 | none · low · medium · high · xhigh · max |
| 默认值 | medium 请求未指定时生效 |
| 可关闭 | 支持 |
| 参数 | reasoning_effort |
| 取值 | minimal · low · medium · high 网关侧参数面——以上方厂商映射为准 |
模型
| 模态 | 文本 + 图像 → 文本 |
|---|
Balanced GPT-6 tier for complex coding and agentic workflows. 1.05M context of which up to 922K can be input, 128K max output. Prompts over 272K input tokens move the whole request onto the long-context rate (2x input and cache, 1.5x output). On Chat Completions, function calling works only with reasoning_effort set to none.
单个 Prompt —— 通过网关实测
GPT-6 Sol 通过 · 3 sentences
Enabling reasoning made the model generate extra internal tokens to work through each request, and those tokens are billed even though users don’t see them. If request volume stayed roughly the same, more billed tokens per request could explain why the bill doubled. We should check the usage breakdown to confirm, then lower reasoning effort or limit it to tasks that need it.
输出 188 tok (+111 思考) 延迟 5.0 s
指令遵循(恰好三句,可数)、受众适配(面向 CFO 的语气),以及下方 token 计量所暴露的隐藏思考计费缺口。
GPT-6 Sol 通过 · 8/8 cases
```python def longest_run(xs): if not xs: return 0 best = cur = 1 for i in range(1, len(xs)): if xs[i] == xs[i - 1]: cur += 1 else: cur = 1 best = max(best, cur) return best ``` The original `cur` counted matching *adjacent pairs*, not items, so every run was one too short—including a single-element input, which returned 0. Starting each run at 1 counts its first item, and updating `best` on every iteration ensures a run that reaches the last index is included.
输出 206 tok (+59 思考) 延迟 5.9 s
修复是否真的正确(可运行)、解释的信息密度,以及在一个边界明确的任务上的 token 效率。
GPT-6 Sol 通过 · 5/5 fields, guidance "Withheld pending the Q4 close"
{"company":"Meridian Robotics","quarter":"September quarter","revenue_usd_m":null,"growth_pct":null,"guidance":"Withheld pending the Q4 close"}
输出 227 tok (+185 思考) 延迟 5.2 s
schema 服从度(不臆造字段)、幻觉压力(guidance 明确被暂缓给出),以及结构化输出路径的差异。
GPT-6 Sol 通过 · 120 words, 0 banned, 1 question
Today, we’re introducing cross-provider prompt caching for our API gateway, helping teams reuse repeated prompt content when routing requests among supported AI providers. The gateway identifies eligible prompt prefixes, stores cache references, and applies them to subsequent requests where provider capabilities allow. Why send the same context again if it can be reused? With fewer duplicate input tokens, applications can reduce costs and improve latency without changing how developers call the gateway. Configure caching by route, monitor hit rates and savings in your dashboard, and keep existing provider fallback rules in place. Availability and cache behavior vary by provider, so the gateway reports eligibility and usage for each request. Get started today with our documentation and test your existing workloads.
输出 586 tok (+443 思考) 延迟 7.7 s
约束服从度(字数预算、禁用词表、唯一的那句问句)、文风指纹,以及长度控制。
30 秒用上 GPT-6 Sol
OpenAI 兼容:换掉 base_url,SDK 不用改。POST /v1/chat/completions
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.chat.completions.create(
model="gpt-6-sol",
messages=[{"role": "user", "content": "Summarize this diff"}],
reasoning_effort="medium",
)
print(resp.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://synthorai.io/v1",
apiKey: "sk-syn-...",
});
const resp = await client.chat.completions.create({
model: "gpt-6-sol",
messages: [{ role: "user", content: "Summarize this diff" }],
reasoning_effort: "medium",
});
console.log(resp.choices[0].message.content);curl https://synthorai.io/v1/chat/completions \
-H "Authorization: Bearer sk-syn-..." \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-6-sol",
"messages": [{"role": "user", "content": "Hello"}],
"reasoning_effort": "medium"
}'package main
import (
"context"
"fmt"
"github.com/openai/openai-go/v3"
"github.com/openai/openai-go/v3/option"
)
func main() {
client := openai.NewClient(
option.WithBaseURL("https://synthorai.io/v1"),
option.WithAPIKey("sk-syn-..."),
)
resp, _ := client.Chat.Completions.New(context.TODO(), openai.ChatCompletionNewParams{
Model: "gpt-6-sol",
Messages: []openai.ChatCompletionMessageParamUnion{
openai.UserMessage("Summarize this diff"),
},
ReasoningEffort: openai.ReasoningEffortMedium,
})
fmt.Println(resp.Choices[0].Message.Content)
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.chat.completions.*;
import com.openai.models.ReasoningEffort;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
ChatCompletion resp = client.chat().completions().create(
ChatCompletionCreateParams.builder()
.model("gpt-6-sol")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));关于 GPT-6 Sol
- OpenAI 称它把 Astra 的大部分优势带进了一个更快、更实惠的模型。
- 它沿用家族的 1,050,000 token 上下文窗口(其中输入最多 922,000 token)与 128K 最大输出,支持文本与图像输入、结构化输出、流式、工具调用和提示词缓存,知识截止为 2026 年 4 月。
- 推理力度从 none 到 max,默认 medium。
- 计价按上下文长度分档:输入不超过 272K token 的提示词按短上下文价计费,超过则整个请求转入长上下文价,输入为两倍、输出为 1.5 倍,缓存输入随同一档位变化。
- 有一条上游限制值得提前规划:在 Chat Completions 上,只有 reasoning_effort 为 none 时才能使用函数调用,所以同时发送工具与推理的智能体客户端应改用 Responses API。
- Synthorai 通过与其余模型相同的 OpenAI 兼容 API 提供 GPT-6 Sol。
常见问题
GPT-6 Sol API 可以免费试用吗?
可以。新账号可获得 10 次试用调用和最高 $1 的免费额度,无需绑卡。按输入 $2/M 计算,仅这笔额度就足够对 GPT-6 Sol 发起约 62 次 ~8K token 的请求。
GPT-6 Sol 最擅长什么?
面向复杂编码与智能体工作的 GPT-6 均衡档、1.05M 上下文、128K 输出,推理力度 none 到 max、以 272K 输入 token 为界的短/长上下文分档计价。完整能力请见「关于」部分,内容取自厂商官方发布说明。
GPT-6 Sol 的价格是多少?
在 Synthorai 上,GPT-6 Sol 输入 $2/百万 token、输出 $10/百万 token,即厂商牌价,无平台加价。缓存命中的输入 token 按 $0.2/M 计费。
GPT-6 Sol 支持提示词缓存(prompt caching)吗?
支持,且全自动:经 OpenAI 提供的提示词自动缓存,无需改代码。缓存命中的输入 token 按 $0.2/M 计费(未命中 $2/M);提示词需有 1,024 token 以上的稳定前缀才能命中缓存(TTL 5–10 分钟,最长 1 小时)。 提示词缓存指南 →
如何开通 GPT-6 Sol?
把现有 OpenAI SDK 的 base_url 指向 "https://synthorai.io/v1",model 设为 "gpt-6-sol" 即可。一把 API key 通用网关上的全部模型。
GPT-6 Sol 的知识截止日期是什么时候?
GPT-6 Sol 的知识截止日期为 2026-04,依据厂商官方文档(数据核验于 2026-09-23)。
相关模型
对比
本页每个值都转录自厂商自己的文档(链接见上),并带有核对日期。价格在全目录范围内比较;各厂商定义不同的规格值,只说明差异而不作图表对比。此处没有任何由我们测量的数据,也不做评分。