新用戶 免費註冊,送 10 次呼叫,最高 $1,免綁卡。

GPT-5.6 Sol

發布於 2026-07-09

chat影像理解程式碼工具呼叫推理提示詞快取

GPT-5.6 Sol 是 OpenAI GPT-5.6 家族的旗艦,頁面上把它描述為面向複雜專業工作的前沿模型;OpenAI 的建議是複雜推理與編碼從這裡起步。

輸入
文字 影像 $5/M
輸出
文字 $30/M
快取讀取
$0.5/M
上下文
1.1M
知識截止
2026-02

Benchmark 成績

高於同儕均值無人分數更高79 / 9034 / 90
GPT-5.6 Sol 其他被測模型 同儕均值 無人分數更高
SWE-Bench Pro
64.6%
GeneBench Pro
無人分數更高 28.7%
OSWorld-Verified
83%
ExploitBench (Cap%)
無人分數更高 73.5%
HealthBench
57%
GDPval-AA v2 Elo · 642-1861
1747.8
Harvey Lab-AA
87.2%
GPQA Diamond
無人分數更高 94.6%
BrowseComp
90.4%
Video-MME (w. sub)
89.5%

廠商公布: Alibaba (Qwen) Anthropic ByteDance DeepSeek Google MiniMax Moonshot OpenAI Tencent Z.ai

價格在同類中的位置

價格在 60 個同類模型中的位置

輸入$5/M
$0.05 · Qwen3 VL Flash GPT-5.4 Pro · $30
輸出$30/M
$0.275 · DeepSeek V4 Flash GPT-5.4 Pro · $180
快取讀取$0.5/M
$0.0028 · DeepSeek V4 Flash GPT-5.4 Pro · $15

這條線顯示該模型的價格,在 Synthorai 上同類模型裡處於什麼位置。兩端標出了最便宜和最貴的那個。這裡是基礎價,批次、區域與快取寫入的折扣見價格頁。

規格與限制

Token

上下文視窗(廠商規格) 1,050,000
最大輸出(廠商規格) 128,000
知識截止 2026-02

提示詞快取

快取方式 自動
最低前綴 1,024
存活時間 5–10 分鐘,最長 1 小時

思考

廠商參數 reasoning.effort
可選值 none · low · medium · high · xhigh · max
預設值 medium 請求未指定時生效
可關閉 支援
思考行為 Responses API 另外接受 reasoning.mode,可為 standard(預設)或 pro;mode 與 effort 是彼此獨立的旋鈕。
參數 reasoning_effort
取值 minimal · low · medium · high 閘道側參數面——以上方廠商映射為準

模型

模態 文字 + 影像 → 文字
  • 面向前沿推理與長程智慧體工作的家族旗艦
  • 引入了 max 推理力度、Responses API 中的 pro 推理模式,以及協調子智慧體的 beta 多智慧體能力(預設 3 個並行)
  • 裸的 gpt-5.6 別名會路由到 Sol
  • 輸入超過 272k token 的提示詞按 2 倍輸入 / 1.5 倍輸出計費

依據 OpenAI 官方文件 ↗

單一提示詞 — 經由閘道測量

提示詞 Explain to a CFO, in exactly three sentences, why our LLM bill doubled after we enabled reasoning. 檢查 恰好 3 句

GPT-5.6 Sol 通過 · 3 sentences

Enabling reasoning makes the model generate additional internal tokens before producing an answer, so each request consumes more billable compute. Reasoning may also increase response length, latency, tool calls, and retries, further raising per-request cost. In short, usage volume may be unchanged, but the cost per task increased enough to double the bill.

輸出 111 tok (+34 思考) 延遲 2.3 s

指令遵循(恰好三句,可數)、受眾適配(面向 CFO 的語氣),以及下方 token 計量所暴露的隱藏思考計費缺口。

提示詞 This function is supposed to return the longest run of consecutive equal items, but callers report it is off by one on single-element inputs and misses runs that end at the last index. Fix it and explain the bug in one paragraph. 檢查 修復通過測試

GPT-5.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 function counted equal *adjacencies* rather than items, so a run of length one produced `0` and every longer run was undercounted by one. Initializing `cur` and `best` to `1` for nonempty input makes them represent item counts, resetting `cur` to `1` starts a new run at the current item, and updating `best` on every iteration ensures a run reaching the final index is included.

輸出 316 tok (+135 思考) 延遲 5.2 s

修復是否真的正確(可執行)、解釋的資訊密度,以及在一個邊界明確的任務上的 token 效率。

提示詞 Extract a JSON object with fields {company, quarter, revenue_usd_m, growth_pct, guidance} from this text. Use null for anything not stated; add no other fields. 檢查 合法 JSON,schema 精確

GPT-5.6 Sol 通過 · 5/5 fields, guidance "withheld pending the Q4 close"

{"company":"Meridian Robotics","quarter":"September quarter","revenue_usd_m":412,"growth_pct":"11+","guidance":"withheld pending the Q4 close"}

輸出 194 tok (+147 思考) 延遲 3.2 s

schema 服從度(不臆造欄位)、幻覺壓力(guidance 明確被暫緩給出),以及結構化輸出路徑的差異。

提示詞 Write a 120-word product announcement for an API gateway feature that caches prompts across providers. Forbidden words: "seamless", "unlock", "game-changer", "revolutionize", "empower". Exactly one sentence must be a question. 檢查 120 詞,0 個禁用詞

GPT-5.6 Sol 通過 · 120 words, 0 banned, 1 question

Today, we’re introducing Provider Prompt Cache, a new API gateway feature that reuses prompt prefixes across supported AI providers, reducing latency, token costs, and duplicated processing. Teams can define cache policies once, route requests dynamically, and preserve provider flexibility without rewriting application logic. Switching models during testing or failover? The gateway identifies eligible prompt segments, applies provider-specific caching controls, and reports hits, misses, savings, and expiration details through unified logs and metrics. Configurable TTLs, tenant isolation, encryption, and cache-bypass options help teams balance performance, privacy, and freshness for every workload. Provider Prompt Cache is available today in beta through the dashboard and API, with SDK examples and migration guidance included. […]

輸出 733 tok (+564 思考) 延遲 7.7 s

約束服從度(字數預算、禁用詞表、唯一的那句問句)、文風指紋,以及長度控制。

30 秒用上 GPT-5.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-5.6-sol",
    messages=[{"role": "user", "content": "Summarize this diff"}],
    reasoning_effort="medium",
)
print(resp.choices[0].message.content)

關於 GPT-5.6 Sol

  • 它把 1,050,000 token 上下文視窗(廠商規格)與 128K 最大輸出 token,和影像輸入以及完整的託管工具套件(網頁搜尋、檔案搜尋、程式碼直譯器、託管 shell、電腦使用、MCP)結合起來,知識截止為 2026 年 2 月,而不帶後綴的 gpt-5.6 別名會路由到 Sol,作為家族的預設。
  • 這一世代在 xhigh 之上引入了新的 max 推理力度級別,用於最複雜的任務,OpenAI 建議在自己的工作負載上評估 max 是否真的勝過 xhigh,而不要想當然。
  • 它還在 Responses API 中新增了 pro 推理模式,面向那些可以容忍更高延遲與 token 用量的困難任務,以及一項 beta 的多智慧體能力,讓模型可以並行啟動並協調子智慧體,預設為三個並行子智慧體。
  • OpenAI 的遷移建議是,先從你在 GPT-5.5 或 GPT-5.4 上使用的推理設定開始,再往下試低一級,因為這一世代往往能用更少的 token 維持品質。
  • 輸入超過 272K token 的 prompt,整個請求會按 2 倍輸入與 1.5 倍輸出計費。
  • Synthorai 在其 OpenAI 相容 API 上原生提供 GPT-5.6 Sol。

常見問題

GPT-5.6 Sol API 可以免費試用嗎?

可以,新帳號可獲得 10 次試用呼叫和最高 $1 的免費額度,無需信用卡。以輸入 $5/M 計算,光是這筆額度就足以對 GPT-5.6 Sol 發出約 24 次 ~8K token 的請求。

GPT-5.6 Sol 最擅長什麼?

前沿推理與長程智慧體工作、新增 max 推理力度、pro 模式與多智慧體子智慧體、裸 gpt-5.6 別名預設路由至此。完整能力請見「關於」一節,內容取自廠商官方發布說明。

GPT-5.6 Sol 的價格是多少?

在 Synthorai 上,GPT-5.6 Sol 輸入 $5/百萬 token、輸出 $30/百萬 token,即廠商牌價,無平台加價。快取命中的輸入 token 以 $0.5/M 計費。

GPT-5.6 Sol 支援提示詞快取(prompt caching)嗎?

支援,且全自動:由 OpenAI 供應的提示詞會自動快取,無需改程式碼。快取命中的輸入 token 以 $0.5/M 計費(未命中 $5/M);提示詞需有 1,024 個 token 以上的穩定前綴才能命中快取(TTL 5–10 分鐘,最長 1 小時)。 提示詞快取指南 →

如何開通 GPT-5.6 Sol?

把現有 OpenAI SDK 的 base_url 指向 "https://synthorai.io/v1",model 設為 "gpt-5.6-sol" 即可。一組 API key 通用閘道上的所有模型。

GPT-5.6 Sol 的知識截止日期是什麼時候?

GPT-5.6 Sol 的知識截止日期為 2026-02,依據廠商官方文件(資料核驗於 2026-07-10)。

相關模型

對比

本頁每個值都轉錄自廠商自己的文件(連結見上),並帶有核對日期。價格在全目錄範圍內比較;各廠商定義不同的規格值,只說明差異而不作圖表對比。此處沒有任何由我們測量的資料,也不做評分。

取得 API 金鑰 算算你的成本 →