Models
Gemini 2.5 Flash-Lite
Model id: gemini/models/gemini-2.5-flash-lite
- Cost
- Fast
- Vision
- Long context
Google’s lightest Gemini 2.5 Flash tier for fast, low-cost multimodal chat.
Best for
high-volume classification, short replies, and cost-sensitive traffic.
- Provider
- Google Gemini
- Context window
- 1,048,576
- Release date
- 2025-09-01
Pricing
Input
$0.1543 / 1M
Output
$0.6173 / 1M
Amounts in Canadian dollars, converted at the Bank of Canada indicative rate (2026-07-31).
Performance
Reading
Last 7 days
Not enough data to display the chart.
Activity
Tokens
—
—
—
—
—
Top 5 tools · last 7 days
Not enough data to display tool activity.
Availability
Availability (%)
Last 7 days
- Operational probes
- 100% over 7 days
- Samples
- 8,607
Quick start
Call the API with a tonia_ key and the exact model id below.
curl
curl https://pass.tonia.ca:8443/v1/chat/completions \
-H "Authorization: Bearer $TONIA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gemini/models/gemini-2.5-flash-lite",
"messages": [{"role":"user","content":"Bonjour"}]
}'Python (OpenAI SDK)
import os
from openai import OpenAI
client = OpenAI(
base_url="https://pass.tonia.ca:8443/v1",
api_key=os.environ["TONIA_API_KEY"],
)
response = client.chat.completions.create(
model="gemini/models/gemini-2.5-flash-lite",
messages=[{"role": "user", "content": "Bonjour"}],
)TypeScript (OpenAI SDK)
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://pass.tonia.ca:8443/v1",
apiKey: process.env.TONIA_API_KEY,
});
const response = await client.chat.completions.create({
model: "gemini/models/gemini-2.5-flash-lite",
messages: [{ role: "user", content: "Bonjour" }],
});On the OpenAI-compatible bridge (Cursor, Cline, and similar tools), Gemini models use the gemini/models/ prefix (for example gemini/models/gemini-3.6-flash).