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

GPT-5.6 Terra

发布于 2026-07-09

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

GPT-5.6 Terra 是 OpenAI GPT-5.6 家族中均衡的中间档,其模型页把它描述为在智能与成本之间取得平衡的 GPT-5.6 模型;OpenAI 把它定位于客户支持、内部工具和文档分析等大批量业务任务,在价格上则把它置于旗舰之下。

输入
文本 图像 $2.5/M
输出
文本 $15/M
缓存读取
$0.25/M
上下文
1.1M
对比 GPT-4o
便宜约 50%
知识截止
2026-02

Benchmark 成绩

高于同侪均值无人分数更高42 / 557 / 55
GPT-5.6 Terra 其他被测模型 同侪均值 无人分数更高
SWE-Bench Pro
63.4%
BioMysteryBench hard
无人分数更高 49.4%
OSWorld 2.0
50.2%
ExploitBench (Cap%)
52.9%
HealthBench
57%
GDPval-AA v2 Elo · 642-1861
1593
Harvey Lab-AA
85.2%
GPQA Diamond
92.9%
BrowseComp
87.5%
LVBench
78.9%

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

价格在同类中的位置

价格在 60 个同类模型中的位置

输入$2.5/M
$0.05 · Qwen3 VL Flash GPT-5.4 Pro · $30
输出$15/M
$0.275 · DeepSeek V4 Flash GPT-5.4 Pro · $180
缓存读取$0.25/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 网关侧参数面——以上方厂商映射为准

模型

模态 文本 + 图像 → 文本
  • 面向兼顾智能与成本的负载的中间档
  • OpenAI 把它定位于大批量业务任务,价位低于旗舰
  • 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.6 Terra 通过 · 3 sentences

Enabling reasoning makes the model generate additional internal analysis tokens and perform more computation before producing the final answer, increasing usage per request. Those extra tokens are billed like other model output or are reflected in higher-priced reasoning-model rates, so even unchanged user traffic can cost substantially more. The bill doubled because average cost per request rose, likely from longer reasoning traces, more complex model routing, or both.

输出 120 tok (+31 思考) 延迟 2.4 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 Terra 通过 · 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 is that `cur` and `best` were counting adjacent *matches* rather than the number of items in a run: a run of one item has zero matching adjacent pairs, and a run of length `n` has only `n - 1` such pairs. Initializing both counters to `1` for a nonempty list and resetting `cur` to `1` when the value changes makes them represent actual run lengths. Updating `best` on every iteration also ensures a run that continues through the final element is included.

输出 196 tok 延迟 2.6 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 Terra 通过 · 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"}

输出 149 tok (+103 思考) 延迟 2.3 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 Terra 通过 · 120 words, 0 banned, 1 question

Today, our API gateway introduces cross-provider prompt caching, reducing repeated token processing while preserving your existing model routing. Teams can store reusable system prompts, policy blocks, and long context prefixes once, then serve them to supported providers with consistent cache keys and observability. The feature tracks hit rates, latency savings, and estimated cost reductions in the dashboard you already use for requests. Why pay to recompute identical context on every call? Configure cache policies by route, tenant, model, or TTL, and fall back automatically when a provider lacks compatible caching. Built-in controls help protect sensitive data through encryption, regional settings, and explicit expiration. Start with a single endpoint, compare results across providers, and scale prompt reuse without rewriting application logic.

输出 631 tok (+475 思考) 延迟 6.0 s

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

30 秒用上 GPT-5.6 Terra

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

关于 GPT-5.6 Terra

  • OpenAI 自己的档位映射称 Terra 大致对应早前 GPT-5 家族的 mini 模型档,其选型指南建议在你想以低于旗舰的价格获得强性能时选用它。
  • 它共享该家族的 1,050,000 token 上下文窗口(厂商规格)、128K 最大输出 token、图像输入、推理 token 支持,以及从网页搜索到 computer use 和 MCP 的托管工具套件,知识截止为 2026 年 2 月。
  • 推理力度省略时默认为 medium,并可达到这一代新的 max 档;Responses API 的 pro 模式和 beta 多智能体子智能体编排在这里同样可用,与整个 GPT-5.6 一致。
  • 缓存输入按标价输入的十分之一计费,缓存写入为 1.25 倍,而输入超过 272K token 的提示词则整个请求按 2 倍输入价和 1.5 倍输出价计费。
  • 对于已把 GPT-5.5 作为默认的团队,Terra 是直接的低成本替代。
  • 在 Synthorai 上,GPT-5.6 Terra 与其余模型走同一个 OpenAI 兼容 API。

常见问题

GPT-5.6 Terra API 可以免费试用吗?

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

GPT-5.6 Terra 最擅长什么?

一半成本比肩 GPT-5.5 性能、为大批量业务负载打造、完整 1,050,000 token 上下文与托管工具。完整能力请见「关于」部分,内容取自厂商官方发布说明。

GPT-5.6 Terra 的价格是多少?

在 Synthorai 上,GPT-5.6 Terra 输入 $2.5/百万 token、输出 $15/百万 token,即厂商牌价,无平台加价。缓存命中的输入 token 按 $0.25/M 计费。

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

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

如何开通 GPT-5.6 Terra?

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

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

GPT-5.6 Terra 的知识截止日期为 2026-02,依据厂商官方文档(数据核验于 2026-07-10)。

相关模型

对比

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

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