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 通用閘道上的所有模型。