Gemini 3.5 Flash-Lite
厂商牌价,无平台加价,按量付费。 以下为官方 list 价。登录客户可在 /console/pricing 查看含工作空间折扣的实际价格。 按 70% 缓存命中率计算的等效输入价:$0.111/M. 当前 Gemini 模型默认开启隐式缓存(缓存命中自动打折),另有按存储计费的显式 CachedContent API,可获得确定性的节省。
30 秒用上 Gemini 3.5 Flash-Lite
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.5-flash-lite",
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.5-flash-lite",
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.5-flash-lite",
"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.5-flash-lite",
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.5-flash-lite")
.addUserMessage("Summarize this diff")
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));关于 Gemini 3.5 Flash-Lite
Gemini 3.5 Flash-Lite 是一款正式发布(GA)的低延迟多模态模型,Google 文档称其为 3.5 系列中最快、成本最低的模型,针对高吞吐、低成本执行(如子智能体任务与文档解析)优化。
- 支持思考与包含 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; the fastest, lowest-cost model in the 3.5 family, optimized for high-throughput low-cost execution (subagent tasks, document parsing); thinking and built-in tools incl. Computer Use. Note: temperature/top_p/top_k are deprecated and ignored from this generation. |
| 提示词缓存 | 自动 + 显式 · 最小前缀 1,024 token |
常见问题
Gemini 3.5 Flash-Lite API 可以免费试用吗?
可以。新账号可获得 10 次试用调用和最高 $1 的免费额度,无需绑卡。按输入 $0.3/M 计算,仅这笔额度就足够对 Gemini 3.5 Flash-Lite 发起约 416 次 ~8K token 的请求。
Gemini 3.5 Flash-Lite 最擅长什么?
3.5 系列中最快、成本最低,以及为高吞吐子智能体与解析而生和100 万上下文、思考与内置工具。完整能力请见 About 部分,内容取自厂商官方发布说明。
Gemini 3.5 Flash-Lite 的价格是多少?
在 Synthorai 上,Gemini 3.5 Flash-Lite 输入 $0.3/百万 token、输出 $2.5/百万 token,即厂商牌价,无平台加价。缓存命中的输入 token 按 $0.03/M 计费。
Gemini 3.5 Flash-Lite 支持提示词缓存(prompt caching)吗?
支持:自动缓存默认开启,另有显式模式可获得确定性折扣。缓存命中的输入 token 按 $0.03/M 计费(未命中 $0.3/M);提示词需有 1,024 token 以上的稳定前缀才能命中缓存。 提示词缓存指南 →
如何开通 Gemini 3.5 Flash-Lite?
把现有 OpenAI SDK 的 base_url 指向 "https://synthorai.io/v1",model 设为 "gemini-3.5-flash-lite" 即可。一把 API key 通用网关上的全部模型。