Gemini 3.1 Flash Lite Preview
Google
google/gemini-3.1-flash-lite-preview
Low-cost, 1M context
Context Window
1.0M
1,000,000 tokens
Max Output
66K
65,536 tokens
About this model
Low-cost, 1M context
Access it through Chuizi.AI with a single ck- API key — no separate upstream provider account needed.
Highlights
1M context
Low cost
Vision input
Tool calling
Best For
High-throughput chatLight vision tasksBatch summarizationSupport automation
2026-02-01
Capabilities
ChatVisionCodepdftools
Pricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $0.263 |
| Output / 1M | $1.58 |
Final prices shown
Quick Start
main.py
from openai import OpenAI client = OpenAI( base_url="https://api.chuizi.ai/v1", api_key="ck-your-key-here", ) response = client.chat.completions.create( model="google/gemini-3.1-flash-lite-preview", messages=[{"role": "user", "content": "Hello!"}], ) print(response.choices[0].message.content)