Claude Sonnet 5 vs Gemini 3.6 Flash
いつ、どちらを使うべきか — ベンチマーク表ではなく、厳選された評価
切ることもできる明示的な思考と推論、加えて最大 128,000 出力トークンという長い回答の余地が必要で、入力がテキストと画像だけで構わないなら claude-sonnet-5 を選んでください。100万トークンあたり入力 $2、出力 $10 です。動画と音声の入力が必要なら gemini-3.6-flash を選びます。コンテキストは同程度の約 1,048,576 トークンで、入力 $1.5、出力 $7.5、キャッシュ読み取り $0.15、音声は100万音声トークンあたり $5 で別建てです。なお思考は無効化できず、最大出力は 65,536 です。おおまかに、Sonnet 5 は双方向ともトークンあたり約 1.33 倍のコストになります。
料金
| Claude Sonnet 5 | Gemini 3.6 Flash | Δ | |
|---|---|---|---|
| 入力 / 1Mトークン | $2 | $1.5 | 1.3× |
| 出力 / 1Mトークン | $10 | $7.5 | 1.3× |
| キャッシュ読み取り / 1Mトークン | $0.2 | $0.15 | 1.3× |
| キャッシュ書き込み | 1.25x (5m) / 2x (1h) | — | — |
ビルド時のライブカタログの料金です。各モデルのページには現在の料金カードが記載されています。
位置付け — この課金単位におけるすべての63個のチャットモデル全体の1Mトークンあたりの入力料金 (対数スケール)
機能
| Claude Sonnet 5 | Gemini 3.6 Flash | |
|---|---|---|
| ツール使用 | あり | あり |
| 思考コントロール | 設定可能 | 常時オン |
| 構造化出力 | あり | あり |
| プロンプトキャッシング | 明示的 (プレフィックスを自分で指定) | 暗黙的 + 明示的 |
| キャッシュ有効期間 | 5m default, 1h option | 非公開 |
| 最小キャッシュプレフィックス | 1024 トークン | 4096 トークン |
仕様
| Claude Sonnet 5 | Gemini 3.6 Flash | |
|---|---|---|
| 入力モダリティ | テキスト 画像 | テキスト 画像 音声 動画 |
| 出力モダリティ | テキスト | テキスト |
| リリース | 2026-06-30 | — |
| 知識のカットオフ | 2026-01 | 2026-03 |
| コンテキストウィンドウ | 1M | 1M |
| 最大出力 | 128K | 66K |
| 思考パラメータ |
| thinkingLevel |
| 指定可能な値 | thinking.type
effort
"enabled" returns 400 |
|
| デフォルト | thinking on (adaptive) effort
| medium |
仕様は各ベンダーのドキュメントから転記されています。ベンダーが公開していない行は推測せず、省略しています。 すべての出典: Claude Sonnet 5 · Gemini 3.6 Flash
1つのプロンプト、両方のモデル — ゲートウェイ経由で測定
Claude Sonnet 5 パス · 3 sentences
Reasoning mode works by having the model generate extended internal "thinking" steps before producing its final answer, and since we're billed on total tokens, that hidden reasoning text adds significantly to what we pay for—even though you never see it in the output. This is different from simply getting longer visible responses; the model is essentially "showing its work" behind the scenes, and complex prompts can trigger thousands of extra reasoning tokens per request. The upside is improved accuracy on complex tasks, but if we want to control costs, we should selectively enable reasoning only for queries that truly need it, rather than applying it universally.
出力 194 tok レイテンシ 4.3 s
Gemini 3.6 Flash パス · 3 sentences
Enabling reasoning causes the model to generate thousands of internal "thinking" tokens behind the scenes to process logic before delivering the final response. Because our vendor bills us for every token generated—including these intermediate processing steps—our billable output volume per query surged significantly. Since output tokens carry a much higher unit cost than input tokens, this jump in processing volume directly doubled our overall spend.
出力 893 tok (+816 思考) レイテンシ 4.7 s
指示追従(ちょうど三文 — 数えられる)、読み手に合わせた調整(CFO 向けの語り口)、そして下のトークン計から見える隠れた思考の課金ギャップ。
Claude Sonnet 5 パス · 8/8 cases
## The Bug The function has two related off-by-one issues rooted in the same cause: `cur` and `best` are initialized to `0` instead of `1`, treating run lengths as the number of *matches* between adjacent elements rather than the number of *elements* in the run. This means a single-element input never enters the loop (since `range(1, 1)` is empty) and returns `0` instead of the correct answer of `1`. It also means that for any input, the run length is undercounted by exactly one — a run of 3 equal elements only produces 2 "match" increments, so `best` ends up as 2 instead of 3. The claim that it "misses runs that end at the last index" is actually a symptom of this same undercount: the logic does update `best` correctly on every iteration (including the last), but because it's counting matches instead of elements, the final reported value is always one less than the true longest run. […]
出力 536 tok レイテンシ 7.1 s
Gemini 3.6 Flash パス · 8/8 cases
Here is the fixed function along with an explanation of the bugs: ```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 ``` ### Explanation The original function initialized `cur` and `best` to `0` and incremented `cur` on matching adjacent items, which meant it was counting identical adjacent *pairs* rather than the total number of *elements* in a run. This caused single-element inputs to skip the loop and return `0` instead of `1`, and undercounted all run lengths by 1 (for example, a run of two items at the end of the list resulted in `cur = 1`). […]
出力 2034 tok (+1768 思考) レイテンシ 10.0 s
修正が実際に正しいか(実行可能か)、説明の密度、そして範囲の限られたタスクでのトークン効率。
Claude Sonnet 5 パス · 5/5 fields, guidance null
```json { "company": "Meridian Robotics", "quarter": "Q3", "revenue_usd_m": 412, "growth_pct": 11.5, "guidance": null } ```
出力 348 tok レイテンシ 5.3 s
Gemini 3.6 Flash パス · 5/5 fields, guidance "withheld"
```json { "company": "Meridian Robotics", "quarter": "September quarter", "revenue_usd_m": 412, "growth_pct": null, "guidance": "withheld" } ```
出力 2843 tok (+2783 思考) レイテンシ 13.1 s
スキーマ遵守(フィールドをでっち上げない)、ハルシネーション圧(guidance は明示的に保留されている)、そして構造化出力の経路の違い。
Claude Sonnet 5 パス · 123 words, 0 banned, 1 question
## Introducing Cross-Provider Prompt Caching We're rolling out a new caching layer for our API gateway that works across every major LLM provider you connect through it. Instead of resending identical prompts and paying full price each time, the gateway recognizes repeated requests and serves cached responses in milliseconds—regardless of whether you're routing to OpenAI, Anthropic, or Google. What does this mean for your bill and your latency? Both drop, often significantly, especially for teams running high-volume, repetitive workloads like customer support bots or batch content generation. The cache is configurable per route, with adjustable TTLs and invalidation rules, so you stay in control of freshness versus cost. Available now for all Pro and Enterprise plans. Check your dashboard to enable it today.
出力 259 tok レイテンシ 4.8 s
Gemini 3.6 Flash 失敗 · 60 words, 0 banned, 0 questions
72: reducing 73: your 74: monthly 75: token 76: spend. S6 (21): 77: You 78: can 79: easily 80: set 81: custom 82: expiration 83: rules, 84: configure 85: TTL 86: settings, 87: and 88: manage 89: cache 90: invalidation 91: across 92: all 93: vendors 94: from 95: one 96: centralized 97: dashboard. S7 (23): 98: Start 99: optimizing […]
出力 4092 tok (+3929 思考) レイテンシ 16.3 s
制約の遵守(語数の上限、禁止語リスト、唯一の疑問文)、文体の指紋、そして長さの制御。
1行で切り替え
以下のすべてのタブには両方のIDが含まれています — 変更箇所はハイライトされた2行のみです。エンドポイント、キー、リクエスト形式はすべて同じです。
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.chat.completions.create(
model="claude-sonnet-5",
# model="gemini-3.6-flash", # この行をアンコメントし、上の行をコメントアウトします
messages=[{"role": "user", "content": "Summarize this diff"}],
reasoning_effort="medium",
)
print(resp.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://synthorai.io/v1",
apiKey: "sk-syn-...",
});
const resp = await client.chat.completions.create({
model: "claude-sonnet-5",
// model: "gemini-3.6-flash", // この行をアンコメントし、上の行をコメントアウトします
messages: [{ role: "user", content: "Summarize this diff" }],
reasoning_effort: "medium",
});
console.log(resp.choices[0].message.content);curl https://synthorai.io/v1/chat/completions \
-H "Authorization: Bearer sk-syn-..." \
-H "Content-Type: application/json" \
-d '{
"model": "claude-sonnet-5",
# "model": "gemini-3.6-flash", # この行をアンコメントし、上の行をコメントアウトします
"messages": [{"role": "user", "content": "Hello"}],
"reasoning_effort": "medium"
}'package main
import (
"context"
"fmt"
"github.com/openai/openai-go/v3"
"github.com/openai/openai-go/v3/option"
)
func main() {
client := openai.NewClient(
option.WithBaseURL("https://synthorai.io/v1"),
option.WithAPIKey("sk-syn-..."),
)
resp, _ := client.Chat.Completions.New(context.TODO(), openai.ChatCompletionNewParams{
Model: "claude-sonnet-5",
// Model: "gemini-3.6-flash", // この行をアンコメントし、上の行をコメントアウトします
Messages: []openai.ChatCompletionMessageParamUnion{
openai.UserMessage("Summarize this diff"),
},
ReasoningEffort: openai.ReasoningEffortMedium,
})
fmt.Println(resp.Choices[0].Message.Content)
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.chat.completions.*;
import com.openai.models.ReasoningEffort;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
ChatCompletion resp = client.chat().completions().create(
ChatCompletionCreateParams.builder()
.model("claude-sonnet-5")
// .model("gemini-3.6-flash") // この行をアンコメントし、上の行をコメントアウトします
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));FAQ
Claude Sonnet 5 と Gemini 3.6 Flash ではどちらが安いですか?
入力 / 1mトークン においては Gemini 3.6 Flash の方が安価です($1.5 対 $2、1.3× の差)。他の行では逆になる可能性があります — 上の表には完全な情報が記載されており、実際のコストは組み合わせに依存します。
2つの統合を行わずに Claude Sonnet 5 と Gemini 3.6 Flash のA/Bテストを実施できますか?
はい。両方とも1つのAPIキーで同じOpenAI互換エンドポイントを通じて提供されます — モデル文字列を1行変更するだけで切り替えられるため、トラフィックの一部をそれぞれにルーティングし、請求額を直接比較できます。
Claude Sonnet 5 と Gemini 3.6 Flash はプロンプトキャッシングをサポートしていますか?
はい — どちらのモデルでもキャッシュ読み込みは入力レートよりも低く請求されるため、ウォームプレフィックスのワークロードは定価が示すよりも低コストになります。キャッシュ読み込みの正確な行は、上の料金表に記載されています。