Gemini 3.5 Flash Lite is a high-efficiency model from Google with upgraded agentic capabilities. It is suited for subagents that execute focused tasks within complex, multi-agent workflows.
At a glance
- Context window
- 1Mtokens
- Max output
- 66Ktokens
- Knowledge to
- —
- Released
- 2026
Capabilities
Benchmarks
- Intelligence index
- 23
- Coding index
- 49
- Agentic index
- 16
Standard evaluations
| Benchmark | Score | Tasks |
|---|---|---|
| gpqa_diamond | 0.84 | 396 |
| tau_bench_verified_airline | 0.76 | 100 |
Source: Artificial Analysis · as of Sep 16, 2026
Performance
Reference uptime
100%
Median latency
906 ms
Throughput
47.8 tok/s
IranRouter uptime comes from our own automated probes; the reference figures are daily measurements of this model's upstream routes. Each card shows a 30-day average, and a day without data stays empty.
Popularity
- Current rank
- —
- Rank change, 7 days
- —
Daily tokens · 90 days
32.6B
Ranked by daily token volume across the global model market; the figure above the chart is the daily average.
Supported parameters
Parameters this model accepts; anything else is ignored.
Quick start
from openai import OpenAI
client = OpenAI(
api_key="ir-...",
base_url="https://iranrouter.com/v1",
)
resp = client.chat.completions.create(
model="google/gemini-3.5-flash-lite",
messages=[{"role": "user", "content": "سلام!"}],
)
print(resp.choices[0].message.content)Only base_url and the key change; the rest of your code stays as it is.