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 通用网关上的全部模型。