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

GPT-5.5 vs GPT-5.6 Luna

vs

何時用哪一個

gpt-5.6-luna 便宜一大截:每百萬輸入 $1 對 $5,輸出 $6 對 $30,快取讀取 $0.1 對 $0.5,每一項都約為 5 分之一;而兩者上下文同為 1050000 token,單次最多輸出 128000 token。gpt-5.5 保留了 computer use 與並行工具呼叫,這兩項 gpt-5.6-luna 未列出,所以工具驅動或操作介面類的任務仍然固定它;一般文字與程式碼量產則用新模型,同樣的視窗便宜 5 倍。

Benchmark 成績

領先高於同儕均值無人分數更高GPT-5.52588 / 13419 / 134GPT-5.6 Luna1615 / 420 / 42

雙方都被測過的 41 項。

GPT-5.5 GPT-5.6 Luna 其他被測模型 同儕均值 無人分數更高
SWE-Bench Pro
59.4%
62.7%
GeneBench Pro
12%
10.8%
OSWorld 2.0
47.5%
45.6%
ExploitBench (Cap%)
47.9%
33.2%
HealthBench
56.5%
55.8%
GDPval-AA v2 Elo · 642-1861
1493.7
1591.8
Harvey Lab-AA
86.3%
N/A
GPQA Diamond
93.6%
92.3%
Blueprint-Bench 2
36.2%
N/A
BrowseComp
84.4%
83.3%
GDP.pdf no tools
26%
22.7%

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

定價

GPT-5.5 GPT-5.6 Luna Δ
輸入 / 1M tokens $5 $1
輸出 / 1M tokens $30 $6
快取讀取 / 1M tokens $0.5 $0.1
快取寫入 不額外計費 不額外計費 -

費率取自建置時的即時目錄;各模型頁面皆附有目前的費率卡。

它們的相對位置 — 在此計費單位下,所有 64 個 聊天 模型的 每 1M tokens 的輸入價格(對數尺度)

GPT-5.5 · $5 GPT-5.6 Luna · $1
$0.05 · Qwen3 VL Flash $30 · GPT-5.4 Pro

能力

GPT-5.5 GPT-5.6 Luna
工具使用
思考控制 可配置 可配置
結構化輸出
提示快取 隱式(自動) 隱式(自動)
快取生命週期 5-10m, up to 1h 5-10m, up to 1h
最小快取前綴 1024 個 token 1024 個 token

規格

GPT-5.5 GPT-5.6 Luna
輸入模態 文字 影像 文字 影像
輸出模態 文字 文字
發布日期 2026-04-24 2026-07-09
知識截止日期 2025-12 2026-02
上下文視窗 1.1M 1.1M
最大輸出 128K 128K
思考參數 reasoning.effort reasoning.effort
可接受的值
reasoning.effort
  • none
  • low
  • medium
  • high
  • xhigh
reasoning.effort
  • none
  • low
  • medium
  • high
  • xhigh
  • max
預設值 medium medium

規格摘錄自各供應商的文件;供應商未發布的資料列會直接省略,而非自行推測。 完整來源: GPT-5.5 · GPT-5.6 Luna

單一提示詞,兩款模型 — 經由閘道測量

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

GPT-5.5 通過 · 3 sentences

Enabling reasoning makes the model do additional internal “thinking” before producing the final answer, which consumes more compute and billable tokens. Even if user volume and output length stayed the same, each request now costs more because the model is spending extra capacity to solve the problem. In short, we bought higher-quality answers, but the unit cost per answer increased enough to double the total LLM bill.

輸出 131 tok (+42 思考) 延遲 2.9 s

GPT-5.6 Luna 通過 · 3 sentences

Enabling reasoning causes the model to use substantially more computational steps and generated tokens per request, even when the visible answer is similar. Because our provider charges based largely on token consumption and compute, that increased processing translated into roughly twice the cost. We can control the expense by reserving reasoning for complex tasks, setting token and effort limits, and monitoring cost per successful outcome.

輸出 146 tok (+60 思考) 延遲 3.1 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.5 通過 · 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 else: cur = 1 best = max(best, cur) return best ``` The bug was that `cur` and `best` were counting the number of equal *adjacent comparisons*, not the number of items in the run. A run of one item has length `1`, but the original code initialized both values to `0`, so single-element inputs returned `0`. Similarly, a run like `[2, 2, 2]` has length `3`, but only two adjacent equal comparisons, so the result was off by one. Also, `best` should be updated after every element is processed, not only inside the equality branch, so runs that continue through the final index are properly considered.

輸出 401 tok (+182 思考) 延遲 5.9 s

GPT-5.6 Luna 通過 · 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: best = max(best, cur) cur = 1 return max(best, cur) ``` The bug is that `cur` counts equal *transitions* rather than the number of items in the current run, so a single-element run returns `0` and a run of length `n` returns `n - 1`; additionally, `best` is only updated when a run is interrupted, so a run continuing through the final element is not finalized before returning. Initializing the current run to one item, resetting it to one after a change, and taking a final `max` fixes both issues.

輸出 356 tok (+161 思考) 延遲 4.7 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.5 通過 · 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"}

輸出 557 tok (+512 思考) 延遲 6.7 s

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

{"company":"Meridian Robotics","quarter":"September quarter","revenue_usd_m":412,"growth_pct":null,"guidance":"Withheld pending the Q4 close"}

輸出 227 tok (+181 思考) 延遲 3.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 個禁用詞

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

Today we’re introducing Prompt Cache Routing, a new API gateway feature that stores reusable prompt prefixes and applies them across leading model providers. Teams can reduce latency, lower token spend, and keep application logic portable without rewriting requests for each vendor. Have you ever paid twice to send the same system instructions? With shared cache keys, provider-aware metadata, and automatic fallback handling, the gateway detects eligible prompt segments, reuses cached context, and records savings in your existing observability dashboards. Policies let admins set retention windows, data boundaries, and provider allowlists by workspace or environment. Prompt Cache Routing is available now in beta for Pro and Enterprise customers, with SDK support, Terraform resources, and clear migration guides included at launch worldwide.

輸出 859 tok (+700 思考) 延遲 8.7 s

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

Introducing PromptCache, an API gateway feature that caches prompts across providers, helping teams reduce latency, control spend, and deliver consistent results. How much faster could your applications respond when repeated prompts are served from a shared cache instead of being sent upstream? PromptCache supports provider-aware routing, configurable time-to-live policies, encrypted storage, cache invalidation, and usage analytics through one operational layer. It works with language-model providers while preserving your authentication, observability, and fallback workflows. Developers can enable caching by endpoint, model, tenant, or prompt pattern, then monitor hit rates and savings in real time. Built for production workloads, PromptCache gives platform teams controls for performance and cost without requiring application rewrites. […]

輸出 948 tok (+778 思考) 延遲 8.0 s

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

只需一行程式碼即可在兩者間切換

以下每個頁籤中都有這兩個 ID — 醒目提示的這兩行是唯一的修改處。相同的端點,相同的金鑰,相同的請求結構。

from openai import OpenAI

client = OpenAI(
    base_url="https://synthorai.io/v1",
    api_key="sk-syn-...",
)

resp = client.chat.completions.create(
    model="gpt-5.5",
    # model="gpt-5.6-luna",  # 取消註解此行,並註解上一行
    messages=[{"role": "user", "content": "Summarize this diff"}],
    reasoning_effort="medium",
)
print(resp.choices[0].message.content)

取得 API 金鑰 →

常見問題

GPT-5.5 和 GPT-5.6 Luna 哪個比較便宜?

GPT-5.6 Luna 在 輸入 / 1m tokens 上較便宜($1 對比 $5,相差 5.0×)。其他項目可能呈現相反結果 — 上表提供完整資訊,實際成本取決於您的使用組合。

我可以在不進行兩次整合的情況下,對 GPT-5.5 和 GPT-5.6 Luna 進行 A/B 測試嗎?

可以。兩者皆透過同一個相容 OpenAI 的端點提供服務,並使用同一把 API 金鑰 — 切換只需更改一行的模型字串,因此您可以將部分流量分別導向兩者並直接比較帳單。

GPT-5.5 與 GPT-5.6 Luna 支援提示快取嗎?

是的 — 兩者的快取讀取費率皆低於其輸入費率,因此具有暖前綴的工作負載成本會低於牌價所示。確切的快取讀取列請見上方的定價表。

相關比較