Gemini 3.6 Flash vs GPT-6 Astra
いつ、どちらを使うか
ビデオやオーディオの入力を処理する場合、または100万入力トークンあたり$1.5、100万出力トークンあたり$7.5という低価格を求める場合は、gemini-3.6-flashを選択してください。ワークロードでより大きな128000の最大出力制限、または思考を無効にするオプションが必要な場合は、100万入力トークンあたり$10、100万出力トークンあたり$50という高い料金を許容した上で、gpt-6-astraを選択してください。どちらのモデルも推論機能を備え、それぞれ1048576と1050000の同等のコンテキストウィンドウを持っていますが、gpt-6-astraはテキストおよび画像入力に制限されており、gemini-3.6-flashは思考をオフにすることができません。
ベンチマーク
ベンダー公表: Alibaba (Qwen) Anthropic DeepSeek Google Moonshot OpenAI Tencent Z.ai
料金
| Gemini 3.6 Flash | GPT-6 Astra | Δ | |
|---|---|---|---|
| 入力 / 1Mトークン | $1.5 | $10 | 0.15× |
| 出力 / 1Mトークン | $7.5 | $50 | 0.15× |
| キャッシュ読み取り / 1Mトークン | $0.15 | $1 | 0.15× |
| キャッシュ書き込み | - | 別途料金なし | - |
ビルド時のライブカタログの料金です。各モデルのページには現在の料金カードが記載されています。
位置付け — この課金単位におけるすべての68個のチャットモデル全体の1Mトークンあたりの入力料金 (対数スケール)
機能
| Gemini 3.6 Flash | GPT-6 Astra | |
|---|---|---|
| ツール使用 | あり | あり |
| 思考コントロール | 常時オン | 設定可能 |
| 構造化出力 | あり | あり |
| プロンプトキャッシング | 暗黙的 + 明示的 | 暗黙的 (自動) |
| キャッシュ有効期間 | 非公開 | 5-10m, up to 1h |
| 最小キャッシュプレフィックス | 4096 トークン | 1024 トークン |
仕様
| Gemini 3.6 Flash | GPT-6 Astra | |
|---|---|---|
| 入力モダリティ | テキスト 画像 音声 動画 | テキスト 画像 |
| 出力モダリティ | テキスト | テキスト |
| リリース | 2026-07-21 | 2026-09-03 |
| 知識のカットオフ | 2026-03 | 2026-04 |
| コンテキストウィンドウ | 1M | 1.1M |
| 最大出力 | 66K | 128K |
| 思考パラメータ | thinkingLevel | reasoning.effort |
| 指定可能な値 |
| reasoning.effort
|
| デフォルト | medium | medium |
仕様は各ベンダーのドキュメントから転記されています。ベンダーが公開していない行は推測せず、省略しています。 すべての出典: Gemini 3.6 Flash · GPT-6 Astra
1つのプロンプト、両方のモデル — ゲートウェイ経由で測定
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
GPT-6 Astra パス · 3 sentences
Enabling reasoning makes the model do more work per request, often generating internal reasoning tokens that are billed even though they do not appear in the final answer. If traffic, model choice, and pricing stayed the same, those extra tokens likely explain why our bill doubled—not longer answers or more users. We should verify the usage breakdown, then reserve higher reasoning levels for tasks where improved results justify the added cost.
出力 283 tok (+196 思考) レイテンシ 17.2 s
指示追従(ちょうど三文 — 数えられる)、読み手に合わせた調整(CFO 向けの語り口)、そして下のトークン計から見える隠れた思考の課金ギャップ。
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
GPT-6 Astra パス · 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 code counts equal adjacent pairs rather than items, so every nonempty run is undercounted by one: a single-element input returns `0`, and a run of three equal items returns `2`. Starting and resetting `cur` to `1` counts the first item of each run, while the empty-input check preserves a result of `0`. Updating `best` after each iteration includes runs ending at the last index without needing a final flush; the original also updated during trailing runs, but undercounted them.
出力 321 tok (+131 思考) レイテンシ 13.5 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
GPT-6 Astra パス · 5/5 fields, guidance "Formal guidance is withheld pending the "
{ "company": "Meridian Robotics", "quarter": "September quarter", "revenue_usd_m": null, "growth_pct": "eleven and change", "guidance": "Formal guidance is withheld pending the Q4 close." }
出力 329 tok (+267 思考) レイテンシ 16.9 s
スキーマ遵守(フィールドをでっち上げない)、ハルシネーション圧(guidance は明示的に保留されている)、そして構造化出力の経路の違い。
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
GPT-6 Astra パス · 120 words, 0 banned, 1 question
Introducing Cross Provider Prompt Cache, a new API gateway feature that reuses eligible prompt content across supported AI providers. Why pay to process the same context every time? Configure caching once at the gateway, then route requests between models while keeping shared instructions, reference material, and conversation prefixes ready for reuse. Caching controls let teams set expiration windows, isolate tenants, and exclude sensitive content. Cache analytics show hit rates, estimated savings, and latency trends, helping developers tune performance with confidence. Existing routing policies continue to work, so adoption fits your current architecture. Start with a single application, measure the results, and expand as needed. Available today in the dashboard and API, with documentation and examples to guide your first deployment.
出力 665 tok (+516 思考) レイテンシ 19.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="gemini-3.6-flash",
# model="gpt-6-astra", # この行をアンコメントし、上の行をコメントアウトします
messages=[{"role": "user", "content": "Summarize this diff"}],
)
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: "gemini-3.6-flash",
// model: "gpt-6-astra", // この行をアンコメントし、上の行をコメントアウトします
messages: [{ role: "user", content: "Summarize this diff" }],
});
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": "gemini-3.6-flash",
# "model": "gpt-6-astra", # この行をアンコメントし、上の行をコメントアウトします
"messages": [{"role": "user", "content": "Hello"}]
}'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: "gemini-3.6-flash",
// Model: "gpt-6-astra", // この行をアンコメントし、上の行をコメントアウトします
Messages: []openai.ChatCompletionMessageParamUnion{
openai.UserMessage("Summarize this diff"),
},
})
fmt.Println(resp.Choices[0].Message.Content)
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.chat.completions.*;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
ChatCompletion resp = client.chat().completions().create(
ChatCompletionCreateParams.builder()
.model("gemini-3.6-flash")
// .model("gpt-6-astra") // この行をアンコメントし、上の行をコメントアウトします
.addUserMessage("Summarize this diff")
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));FAQ
Gemini 3.6 Flash と GPT-6 Astra ではどちらが安いですか?
入力 / 1mトークン においては Gemini 3.6 Flash の方が安価です($1.5 対 $10、6.7× の差)。他の行では逆になる可能性があります — 上の表には完全な情報が記載されており、実際のコストは組み合わせに依存します。
2つの統合を行わずに Gemini 3.6 Flash と GPT-6 Astra のA/Bテストを実施できますか?
はい。両方とも1つのAPIキーで同じOpenAI互換エンドポイントを通じて提供されます — モデル文字列を1行変更するだけで切り替えられるため、トラフィックの一部をそれぞれにルーティングし、請求額を直接比較できます。
Gemini 3.6 Flash と GPT-6 Astra はプロンプトキャッシングをサポートしていますか?
はい — どちらのモデルでもキャッシュ読み込みは入力レートよりも低く請求されるため、ウォームプレフィックスのワークロードは定価が示すよりも低コストになります。キャッシュ読み込みの正確な行は、上の料金表に記載されています。