新人 免费注册,送 10 次调用,最高 $1,免绑卡。

GPT-5.5

发布于 2026-04-24

chat图像理解代码工具调用推理提示词缓存

GPT-5.5 是 OpenAI 同代的前沿旗舰,发布时被称为「面向编码与专业工作的新一类智能」,在产品线中位于 GPT-5.4 之上。

输入
文本 图像 $5/M
输出
文本 $30/M
缓存读取
$0.5/M
上下文
1.1M
知识截止
2025-12

Benchmark 成绩

高于同侪均值无人分数更高88 / 13419 / 134
GPT-5.5 其他被测模型 同侪均值 无人分数更高
SWE-Bench Pro
59.4%
GeneBench Pro
12%
OSWorld-Verified
78.7%
Cybergym
81.8%
HealthBench
56.5%
GDPval-AA v2 Elo · 642-1861
1493.7
Harvey Lab-AA
86.3%
GPQA Diamond
93.6%
Blueprint-Bench 2
36.2%
BrowseComp
84.4%
Video-MME (w. sub)
89.3%

厂商公布: 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
知识截止 2025-12

提示词缓存

缓存方式 自动
最低前缀 1,024
存活时间 5–10 分钟,最长 1 小时

思考

厂商参数 reasoning.effort
可选值 none · low · medium · high · xhigh
默认值 medium 请求未指定时生效
可关闭 支持
思考行为 支持交错思考:思考之前和思考之间都有可见输出,工具调用之间也会思考。
参数 reasoning_effort
取值 minimal · low · medium · high 网关侧参数面——以上方厂商映射为准

模型

模态 文本 + 图像 → 文本
  • 被描述为面向编码与专业工作的新一类智能
  • 1.05M 上下文 / 128k 最大输出
  • 输入超过 272k token 的提示词按 2x 输入 / 1.5x 输出计费

依据 OpenAI 官方文档 ↗

单个 Prompt —— 通过网关实测

提示词 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

指令遵循(恰好三句,可数)、受众适配(面向 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

修复是否真的正确(可运行)、解释的信息密度,以及在一个边界明确的任务上的 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

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

约束服从度(字数预算、禁用词表、唯一的那句问句)、文风指纹,以及长度控制。

30 秒用上 GPT-5.5

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

关于 GPT-5.5

  • 它把 1,050,000 token 上下文窗口(厂商规格)和 128K 最大输出,与图像输入、从 none 到 xhigh 的推理力度控制、流式、结构化输出以及 OpenAI 完整的托管工具套件结合起来,知识截止为 2025 年 12 月。
  • 从 GPT-5.4 迁移前,这一版本有三处变化值得先读。
  • 推理力度现在默认为 medium 而非 none,这会悄然抬高任何从不设置它的客户端的 token 支出与延迟。
  • 图像 detail 未设置或设为 auto 时,现在采用模型的原始行为。
  • 而缓存只在扩展提示词缓存下生效,该模型不支持内存中的提示词缓存。
  • 工具列表包括函数调用、网页搜索、文件搜索、工具搜索、图像生成、代码解释器、托管 shell、apply patch、skills、computer use 和 MCP,覆盖 Chat Completions、Responses 和 Batch。
  • 输入超过 272K token 的提示词,整个请求按 2 倍输入价和 1.5 倍输出价计费,OpenAI 还指出处于该长上下文区间的请求会占用被削减的速率限制配额。
  • Synthorai 在其 OpenAI 兼容 API 上原生提供 GPT-5.5。

常见问题

GPT-5.5 API 可以免费试用吗?

可以。新账号可获得 10 次试用调用和最高 $1 的免费额度,无需绑卡。按输入 $5/M 计算,仅这笔额度就足够对 GPT-5.5 发起约 24 次 ~8K token 的请求。

GPT-5.5 最擅长什么?

面向专业工作的新等级智能、1,050,000 token 上下文,128K 输出、推理力度从 none 到 xhigh。完整能力请见「关于」部分,内容取自厂商官方发布说明。

GPT-5.5 的价格是多少?

在 Synthorai 上,GPT-5.5 输入 $5/百万 token、输出 $30/百万 token,即厂商牌价,无平台加价。缓存命中的输入 token 按 $0.5/M 计费。

GPT-5.5 支持提示词缓存(prompt caching)吗?

支持,且全自动:经 OpenAI 提供的提示词自动缓存,无需改代码。缓存命中的输入 token 按 $0.5/M 计费(未命中 $5/M);提示词需有 1,024 token 以上的稳定前缀才能命中缓存(TTL 5–10 分钟,最长 1 小时)。 提示词缓存指南 →

如何开通 GPT-5.5?

把现有 OpenAI SDK 的 base_url 指向 "https://synthorai.io/v1",model 设为 "gpt-5.5" 即可。一把 API key 通用网关上的全部模型。

GPT-5.5 的知识截止日期是什么时候?

GPT-5.5 的知识截止日期为 2025-12,依据厂商官方文档(数据核验于 2026-07-09)。

相关模型

对比

本页每个值都转录自厂商自己的文档(链接见上),并带有核对日期。价格在全目录范围内比较;各厂商定义不同的规格值,只说明差异而不作图表对比。此处没有任何由我们测量的数据,也不做评分。

获取 API 密钥 算算你的成本 →