新規 無料登録、10回の呼び出しを進呈。最大 $1、カード不要。

GPT-5.6 Terra

2026-07-09 リリース

chat画像入力コードツール呼び出しリーズニングプロンプトキャッシュ

GPT-5.6 Terra は OpenAI の GPT-5.6 ファミリーのバランス型ミドルティアで、モデルページでは知能とコストのバランスを取る GPT-5.6 モデルと説明されています。

入力
テキスト 画像 $2.5/M
出力
テキスト $15/M
キャッシュ読み取り
$0.25/M
コンテキスト
1.1M
GPT-4o 比
約 50% 割安
知識カットオフ
2026-02

ベンチマーク

平均超え他モデル以上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 上の同種モデルの中でこのモデルの価格がどこに位置するかを示します。両端には最も安いモデルと最も高いモデルの名前が入ります。表示は基本料金で、バッチ・リージョン・キャッシュ書き込みの割引は料金ページにあります。

スペックと制限

トークン

コンテキストウィンドウ(ベンダー仕様) 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 とエフォートは独立したダイヤルです。
パラメータ reasoning_effort
minimal · low · medium · high ゲートウェイ側のパラメータ面——上のベンダーマッピングが適用されます

モデル

モダリティ テキスト + 画像 → テキスト
  • 知能とコストのバランスを取るワークロード向けのミッドティア。
  • OpenAI はこれを、フラッグシップより低い価格帯で大量のビジネスタスク向けに位置づけています。
  • 1.05M コンテキスト / 128k 最大出力。
  • 入力 272k トークンを超えるプロンプトは入力 2 倍 / 出力 1.5 倍で課金されます。

出典:OpenAI 公式ドキュメント ↗

1つのプロンプト — ゲートウェイ経由で測定

プロンプト 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 向けの語り口)、そして下のトークン計から見える隠れた思考の課金ギャップ。

プロンプト 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

修正が実際に正しいか(実行可能か)、説明の密度、そして範囲の限られたタスクでのトークン効率。

プロンプト 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、スキーマ厳密

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

スキーマ遵守(フィールドをでっち上げない)、ハルシネーション圧(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 はこれを、カスタマーサポート、社内ツール、ドキュメント分析といった大量のビジネスタスク向けに位置づけ、価格ではフラッグシップの下に置いています。
  • OpenAI 自身のティア対応表は、Terra が以前の GPT-5 ファミリーの mini モデルティアにおおむね対応するとしており、選択ガイドはフラッグシップより低い価格で強い性能が欲しいときに勧めています。
  • ファミリーの 1,050,000 トークンのコンテキストウィンドウ(ベンダー仕様)、128K の最大出力トークン、画像入力、推論トークンへの対応、そしてウェブ検索からコンピュータ使用や MCP に至るホストされたツールスイートを共有し、知識カットオフは 2026 年 2 月です。
  • 推論エフォートは省略時に medium となり、この世代の新しい max レベルまで届きます。
  • Responses API の pro モードとベータのマルチエージェントによるサブエージェントのオーケストレーションも、GPT-5.6 全体と同様にここで利用できます。
  • キャッシュ入力は表示入力価格の 10 分の 1 で、キャッシュへの書き込みは 1.25 倍、入力が 272K トークンを超えるプロンプトはリクエスト全体が入力 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 トークンのリクエストを送れます。

GPT-5.6 Terra は何が得意ですか?

GPT-5.5 に匹敵する性能を 2 分の 1 のコストで、大量処理のビジネスワークロード向けに構築、1,050,000 トークンのフルコンテキストとホストされたツール。全体像はベンダー公式のリリースノートに基づく「このモデルについて」セクションをご覧ください。

GPT-5.6 Terra の料金はいくらですか?

Synthorai 上の GPT-5.6 Terra は入力 100 万トークンあたり $2.5、出力 100 万トークンあたり $15 です。ベンダー定価のままで、プラットフォーム手数料はありません。キャッシュ済み入力トークンは $0.25/M で課金されます。

GPT-5.6 Terra はプロンプトキャッシュに対応していますか?

はい、自動で有効です。OpenAI 経由のプロンプトはコード変更なしでキャッシュされます。キャッシュ済み入力トークンは $0.25/M(未キャッシュは $2.5/M)で課金されます。なお、キャッシュには 1,024 トークン以上の安定したプレフィックスが必要です(TTL 5〜10 分、最大 1 時間)。 プロンプトキャッシュガイド →

GPT-5.6 Terra を利用するには?

お使いの OpenAI SDK の base_url を "https://synthorai.io/v1" に向け、model="gpt-5.6-terra" を設定すれば完了です。API キー 1 本でゲートウェイ上のすべてのモデルを利用できます。

GPT-5.6 Terra の知識カットオフはいつですか?

ベンダー公式ドキュメントによると、GPT-5.6 Terra の知識カットオフは 2026-02 です(2026-07-10 時点)。

関連モデル

比較

このページの値はすべてベンダー自身のドキュメント(上部にリンク)から転記し、確認した日付を付しています。価格はカタログ全体で比較しますが、ベンダーごとに定義が異なる仕様値は差異を明記するにとどめ、図表で比較はしません。当社が測定した数値はなく、スコアも付けていません。

API キーを取得 コストを比較する →