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 文件將其定位為面向智能體時代的持續前沿級智慧,針對更高速度與更低成本最佳化——文件稱它在複雜智能體與多模態任務上表現更強、同時降低 token 用量,價格低於 3.5 Flash。
- 支援思考與包含 Computer Use 的完整內建工具套件,接受文字、圖像、影片、音訊輸入,100 萬 token 上下文、最多 65,536 輸出 token;模型頁提示:自本代起 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 token |
常見問題
Gemini 3.6 Flash API 可以免費試用嗎?
可以,新帳號可獲得 10 次試用呼叫和最高 $1 的免費額度,無需信用卡。以輸入 $1.5/M 計算,光是這筆額度就足以對 Gemini 3.6 Flash 發出約 83 次 ~8K token 的請求。
Gemini 3.6 Flash 最擅長什麼?
更高速度、更低成本的前沿智慧,以及據 Google 文件 token 用量低於 3.5 Flash和100 萬上下文,內建 Computer Use。完整能力請見 About 一節,內容取自廠商官方發布說明。
Gemini 3.6 Flash 的價格是多少?
在 Synthorai 上,Gemini 3.6 Flash 輸入 $1.5/百萬 token、輸出 $7.5/百萬 token,即廠商牌價,無平台加價。快取命中的輸入 token 以 $0.15/M 計費。
Gemini 3.6 Flash 支援提示詞快取(prompt caching)嗎?
支援:自動快取預設開啟,另有顯式模式可獲得確定的折扣。快取命中的輸入 token 以 $0.15/M 計費(未命中 $1.5/M);提示詞需有 1,024 個 token 以上的穩定前綴才能命中快取。 提示詞快取指南 →
如何開通 Gemini 3.6 Flash?
把現有 OpenAI SDK 的 base_url 指向 "https://synthorai.io/v1",model 設為 "gemini-3.6-flash" 即可。一組 API key 通用閘道上的所有模型。