Gemini 3.6 Flash
ベンダー定価。プラットフォーム手数料なし、従量課金。 これらは公式 list 価格です。ログイン中のお客様は /console/pricing でワークスペース割引を含む実効価格を確認できます。 キャッシュヒット率 70% 時の実効入力単価:$0.555/M. 現行の Gemini モデルでは暗黙的キャッシュがデフォルトでオンになっており(キャッシュヒット時に自動で割引)、確実な節約のためのストレージベース課金の明示的な CachedContent API も提供されます。
30 秒で Gemini 3.6 Flash を使う
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="gemini-3.6-flash",
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",
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",
"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",
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")
.addUserMessage("Summarize this diff")
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));Gemini 3.6 Flash について
Gemini 3.6 Flash は一般提供(GA)のモデルで、Google のドキュメントはエージェント時代向けの持続的なフロンティア級の知能と位置づけ、より高速・低コストに最適化されています。
- ドキュメントによれば、複雑なエージェント/マルチモーダルタスクでより高い性能を発揮しつつ、3.5 Flash より低価格でトークン使用量を削減します。
- 思考と Computer Use を含む組み込みツール群に対応し、テキスト・画像・動画・音声入力、100 万トークンのコンテキスト、最大 65,536 出力トークン。
- モデルページは、この世代から temperature・top_p・top_k が非推奨となり無視されると注記しています。
- Synthorai は OpenAI 互換チャットエンドポイントで提供します。
スペックと制限
| 最大出力(ベンダー仕様) | 65,536 |
| モダリティ | text + image + video + audio → text |
| 機能 | tools · structured_output · streaming · vision · batch · caching · reasoning · computer_use |
| 特記事項 | GA; 1M-token context, 64K max output; thinking plus the full built-in tool suite including Computer Use; officially positioned as stronger on complex agentic and multimodal tasks with lower token usage than 3.5 Flash. Note: temperature/top_p/top_k are deprecated and ignored from this generation. |
| プロンプトキャッシュ | 自動 + 明示 · 最小プレフィックス 1,024 トークン |
よくある質問
Gemini 3.6 Flash API は無料で試せますか?
はい。新規アカウントには 10 回のトライアル呼び出しと最大 $1 の無料クレジットが付与され、カード登録は不要です。入力 $1.5/M で計算すると、このクレジットだけで Gemini 3.6 Flash に対して約 83 回の ~8K トークンのリクエストを送れます。
Gemini 3.6 Flash は何が得意ですか?
高速・低コストのフロンティア知能、さらにGoogle ドキュメントによれば 3.5 Flash よりトークン使用量が少ないと100 万コンテキスト、Computer Use 内蔵。全体像はベンダー公式のリリースノートに基づく About セクションをご覧ください。
Gemini 3.6 Flash の料金はいくらですか?
Synthorai 上の Gemini 3.6 Flash は入力 100 万トークンあたり $1.5、出力 100 万トークンあたり $7.5 です。ベンダー定価のままで、プラットフォーム手数料はありません。キャッシュ済み入力トークンは $0.15/M で課金されます。
Gemini 3.6 Flash はプロンプトキャッシュに対応していますか?
はい。自動キャッシュがデフォルトで有効なうえ、確実な割引を得られる明示モードもあります。キャッシュ済み入力トークンは $0.15/M(未キャッシュは $1.5/M)で課金されます。なお、キャッシュには 1,024 トークン以上の安定したプレフィックスが必要です。 プロンプトキャッシュガイド →
Gemini 3.6 Flash を利用するには?
お使いの OpenAI SDK の base_url を "https://synthorai.io/v1" に向け、model="gemini-3.6-flash" を設定すれば完了です。API キー 1 本でゲートウェイ上のすべてのモデルを利用できます。