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

GPT-6 Sol

2026-09-22 リリース

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

GPT-6 Sol は OpenAI の GPT-6 ファミリーのバランス型ティアで、2026 年 9 月 22 日に GPT-6 Luna とともにリリースされ、OpenAI は GPT-6 Astra フラッグシップの下で複雑なコーディングとエージェントワークフローを担うモデルと位置付けています。

入力
テキスト 画像 $2/M
出力
テキスト $10/M
キャッシュ読み取り
$0.2/M
コンテキスト
1.1M
GPT-4o 比
約 60% 割安
知識カットオフ
2026-04

入力が 272K トークンを超える場合、リクエスト全体が入力 $4/M・出力 $15/M で課金されます

ベンチマーク

平均超え比較できるのは 4 件のみ
GPT-6 Sol 測定された他モデル 測定対象の平均 他モデルに上回られていない
DeepSWE 1.1
68.8%
OSWorld 2.0 offline set, partial
60.5%
Agents' Last Exam
56.4%

ベンダー公表: Alibaba (Qwen) Anthropic DeepSeek Google OpenAI Z.ai

価格の位置づけ

同種 67 モデル中の料金の位置

入力$2/M
$0.05 · Qwen3 VL Flash GPT-5.4 Pro · $30
出力$10/M
$0.275 · DeepSeek V4 Flash GPT-5.4 Pro · $180
キャッシュ読み取り$0.2/M
$0.0028 · DeepSeek V4 Flash GPT-5.4 Pro · $15

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

スペックと制限

トークン

コンテキストウィンドウ(ベンダー仕様) 1,050,000
最大出力(ベンダー仕様) 128,000
知識カットオフ 2026-04

プロンプトキャッシュ

キャッシュ方式 自動
最小プレフィックス 1,024
保持時間 5〜10 分、最大 1 時間

思考

ベンダー側パラメータ reasoning.effort
指定可能な値 none · low · medium · high · xhigh · max
デフォルト medium リクエストで未指定の場合に適用
無効化の可否 対応
パラメータ reasoning_effort
minimal · low · medium · high ゲートウェイ側のパラメータ面——上のベンダーマッピングが適用されます

モデル

モダリティ テキスト + 画像 → テキスト

Balanced GPT-6 tier for complex coding and agentic workflows. 1.05M context of which up to 922K can be input, 128K max output. Prompts over 272K input tokens move the whole request onto the long-context rate (2x input and cache, 1.5x output). On Chat Completions, function calling works only with reasoning_effort set to none.

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

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

プロンプト Explain to a CFO, in exactly three sentences, why our LLM bill doubled after we enabled reasoning. チェック ちょうど 3 文

GPT-6 Sol パス · 3 sentences

Enabling reasoning made the model generate extra internal tokens to work through each request, and those tokens are billed even though users don’t see them. If request volume stayed roughly the same, more billed tokens per request could explain why the bill doubled. We should check the usage breakdown to confirm, then lower reasoning effort or limit it to tasks that need it.

出力 188 tok (+111 思考) レイテンシ 5.0 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-6 Sol パス · 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: cur = 1 best = max(best, cur) return best ``` The original `cur` counted matching *adjacent pairs*, not items, so every run was one too short—including a single-element input, which returned 0. Starting each run at 1 counts its first item, and updating `best` on every iteration ensures a run that reaches the last index is included.

出力 206 tok (+59 思考) レイテンシ 5.9 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-6 Sol パス · 5/5 fields, guidance "Withheld pending the Q4 close"

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

出力 227 tok (+185 思考) レイテンシ 5.2 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-6 Sol パス · 120 words, 0 banned, 1 question

Today, we’re introducing cross-provider prompt caching for our API gateway, helping teams reuse repeated prompt content when routing requests among supported AI providers. The gateway identifies eligible prompt prefixes, stores cache references, and applies them to subsequent requests where provider capabilities allow. Why send the same context again if it can be reused? With fewer duplicate input tokens, applications can reduce costs and improve latency without changing how developers call the gateway. Configure caching by route, monitor hit rates and savings in your dashboard, and keep existing provider fallback rules in place. Availability and cache behavior vary by provider, so the gateway reports eligibility and usage for each request. Get started today with our documentation and test your existing workloads.

出力 586 tok (+443 思考) レイテンシ 7.7 s

制約の遵守(語数の上限、禁止語リスト、唯一の疑問文)、文体の指紋、そして長さの制御。

30 秒で GPT-6 Sol を使う

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

GPT-6 Sol について

  • OpenAI によれば、Astra の強みの多くをより高速で手頃なモデルにもたらしています。
  • ファミリー共通の 1,050,000 トークンのコンテキストウィンドウ(入力は最大 922,000 トークン)と 128K の最大出力を持ち、テキストと画像の入力、構造化出力、ストリーミング、ツール利用、プロンプトキャッシュに対応し、知識カットオフは 2026 年 4 月です。
  • 推論エフォートは none から max まで、既定は medium です。
  • 価格はコンテキスト長で分かれ、入力 272K トークン以下は短コンテキスト料金、それを超えるとリクエスト全体が長コンテキスト料金(入力 2 倍、出力 1.5 倍)になり、キャッシュ入力も同じティアに従います。
  • 上流の制限が 1 つあります。
  • Chat Completions では reasoning_effort が none のときのみ関数呼び出しが使えるため、ツールと推論を同時に送るエージェントクライアントは Responses API を使うべきです。
  • Synthorai は他のモデルと同じ OpenAI 互換 API で GPT-6 Sol を提供します。

よくある質問

GPT-6 Sol API は無料で試せますか?

はい。新規アカウントには 10 回のトライアル呼び出しと最大 $1 の無料クレジットが付与され、カード登録は不要です。入力 $2/M で計算すると、このクレジットだけで GPT-6 Sol に対して約 62 回の ~8K トークンのリクエストを送れます。

GPT-6 Sol は何が得意ですか?

複雑なコーディングとエージェント作業向けの GPT-6 バランス型、1.05M コンテキスト、128K 出力、推論エフォート none〜max、入力 272K トークンを境にした短/長コンテキスト料金。全体像はベンダー公式のリリースノートに基づく「このモデルについて」セクションをご覧ください。

GPT-6 Sol の料金はいくらですか?

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

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

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

GPT-6 Sol を利用するには?

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

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

ベンダー公式ドキュメントによると、GPT-6 Sol の知識カットオフは 2026-04 です(2026-09-23 時点)。

関連モデル

比較

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

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