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

Claude Opus 4.6

發布於 2026-02-05

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

Claude Opus 4.6 把 Opus 產品線擴展到了長上下文工作:相比 Opus 4.5,它把上下文視窗從 200K 增加到 1M token,把最大輸出翻倍到 128K token,並在擴展思考之外引入自適應思考,而每百萬 token $5/$25 的定價保持不變。

輸入
文字 影像 $5/M
輸出
文字 $25/M
快取讀取
$0.5/M
上下文
1M
知識截止
2025-05

Benchmark 成績

高於同儕均值無人分數更高15 / 222 / 22
Claude Opus 4.6 其他被測模型 同儕均值 無人分數更高
SWE-Bench Pro
57.3%
Structural Biology
30.9%
ScreenSpot-Pro
49.5%
GDPval-AA Elo · 1314-1753
1619
GPQA Diamond
90%
MCP-Mark
56.7%
BabyVision
12.6%

廠商公布: 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
輸出$25/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,000,000
最大輸出(廠商規格) 128,000
知識截止 2025-05
訓練資料截至 2025-08 知識截止 2025-05

提示詞快取

快取方式 顯式(需開啟)
最低前綴 4,096 廠商預設 1,024
存活時間 預設 5 分鐘,可選 1 小時
寫入成本 1.25x (5m) / 2x (1h)

思考

廠商參數 thinking.type + output_config.effort (budget_tokens still accepted, deprecated)
可選值 thinking.type adaptive · enabled (deprecated) · disabled; effort low · medium · high · max (no xhigh)
預設值 思考關閉;effort 為 high 請求未指定時生效
可關閉 支援
思考行為 自適應思考會在工具呼叫之間自動交錯,無需 beta header,而在此模型上,手動的 enabled 模式完全沒有交錯思考;較早輪次的 thinking 區塊會保留在上下文中並按輸入計費。
參數 reasoning_effort
取值 minimal · low · medium · high 閘道側參數面——以上方廠商映射為準

模型

模態 文字 + 影像 → 文字
  • 首個推薦使用自適應思考的 Opus
  • 不支援 assistant 預填
  • 1M 上下文自 2026-03-13 起 GA
  • fast mode 已於 2026-06-29 移除

依據 Anthropic 官方文件 ↗

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

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

Claude Opus 4.6 通過 · 3 sentences

When reasoning is enabled, the model generates extensive internal chain-of-thought tokens that are produced—and billed—before the user-visible answer even begins, often multiplying total token consumption by 5–10× per request. Because our pricing is strictly per-token for both input and output, those hidden "thinking" tokens hit the invoice just as hard as the final response, even though end users never see them. To bring costs back in line, we can tune the reasoning effort parameter, cache common prompts, and route only genuinely complex queries to the reasoning model while handling routine tasks with a lighter, cheaper one.

輸出 132 tok 延遲 6.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. 檢查 修復通過測試

Claude Opus 4.6 通過 · 8/8 cases

```python def longest_run(xs): if not xs: return 0 best = 1 cur = 1 for i in range(1, len(xs)): if xs[i] == xs[i - 1]: cur += 1 best = max(best, cur) else: cur = 1 return best ``` The original code had two related bugs stemming from the fact that it counted additional consecutive elements (starting from 0) rather than the total length of a run (starting from 1): first, `best` and `cur` were initialized to 0 instead of 1, which meant a single-element list (where the loop never executes) returned 0 instead of the correct answer 1; second, when a mismatch was found, `cur` was reset to 0 instead of 1 (failing to count the current element as the start of a new run), which meant that if the longest run occurred at the very end of the list, the comparison `best = max(best, cur)` on the next matching step would be w […]

輸出 277 tok 延遲 7.0 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 精確

Claude Opus 4.6 通過 · 5/5 fields, guidance "withheld pending the Q4 close"

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

輸出 73 tok 延遲 2.6 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 個禁用詞

Claude Opus 4.6 通過 · 118 words, 0 banned, 1 question

**Introducing Cross-Provider Prompt Caching** Why pay for the same computation twice? Our new API gateway feature intelligently caches prompt responses across multiple LLM providers, reducing latency by up to 60% and cutting costs significantly for repeated or similar queries. When your application sends a prompt that matches a cached response—regardless of whether it originally came from OpenAI, Anthropic, or Cohere—the gateway serves the stored result instantly. You maintain full control over cache duration, invalidation rules, and provider-specific overrides through a simple configuration dashboard. The feature supports both exact and semantic matching, letting teams optimize for speed or flexibility based on their use case. Available today on all Pro and Enterprise plans with no additional setup required.

輸出 163 tok 延遲 6.1 s

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

30 秒用上 Claude Opus 4.6

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="claude-opus-4-6",
    messages=[{"role": "user", "content": "Summarize this diff"}],
    reasoning_effort="medium",
)
print(resp.choices[0].message.content)

關於 Claude Opus 4.6

  • Anthropic 推出它時稱它是自家面向複雜智慧體任務與長程工作最聰明的模型,而 1M 視窗在一個月後就從 beta 轉為正式發布,並按標準價格提供。
  • 它支援視覺輸入、工具呼叫與提示詞快取,Batch API 還為這款模型提供擴展至 300K 輸出的 beta。
  • 這一版也是壓縮(compaction)首次以 beta 形式推出的版本,讓長時間執行的智慧體會話有辦法在超出視窗之後繼續工作。
  • 兩種思考模式都被接受,其中擴展思考現已棄用但仍可運作,兩種型別都不會被拒絕;力度涵蓋 low 到 max,不含 xhigh,預設為 high。
  • 有兩項行為會在遷移時絆住人:從這一代開始不再支援預填助理訊息,而 fast-mode 研究預覽已於 2026 年 6 月移除,此後相關請求不會產生錯誤,只會按標準速度與標準費率執行。
  • 提示詞快取需要 4,096 token 的最小前綴。
  • 它現在已被列為排在 Opus 4.7 與 4.8 之後的舊版模型。
  • Synthorai 讓任何 OpenAI 相容用戶端都能呼叫 Claude Opus 4.6。

常見問題

Claude Opus 4.6 API 可以免費試用嗎?

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

Claude Opus 4.6 最擅長什麼?

上下文視窗從 200K 增至 1M、最大輸出翻倍至 128K token、批次 300K 輸出擴展 beta。完整能力請見「關於」一節,內容取自廠商官方發布說明。

Claude Opus 4.6 的價格是多少?

在 Synthorai 上,Claude Opus 4.6 輸入 $5/百萬 token、輸出 $25/百萬 token,即廠商牌價,無平台加價。快取命中的輸入 token 以 $0.5/M 計費。

Claude Opus 4.6 支援提示詞快取(prompt caching)嗎?

支援,需主動開啟:以 cache_control 中斷點標記穩定前綴。快取命中的輸入 token 以 $0.5/M 計費(未命中 $5/M);提示詞需有 4,096 個 token 以上的穩定前綴才能命中快取(TTL 預設 5 分鐘,可選 1 小時)。 提示詞快取指南 →

如何開通 Claude Opus 4.6?

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

Claude Opus 4.6 的知識截止日期是什麼時候?

Claude Opus 4.6 的知識截止日期為 2025-05,依據廠商官方文件(資料核驗於 2026-07-09)。

相關模型

對比

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

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