Google's fastest and most cost-effective Gemini 3.5-class model, delivering around 350 output tokens per second per the Artificial Analysis Index. Designed for low-latency and high-throughput agentic workflows such as agentic search and document processing, with configurable thinking levels, built-in computer use, and full multimodal support across a 1M-token context window.
1.0M tokens
2
Kullanılabilir
En ucuz
Google AI Studio
$2.80/1M tokens
Google AI Studio, Google Cloud Vertex AI
Toplam maliyete göre sıralanır (1M token başına giriş + çıkış). Sağlayıcı ayrıntılarını görmek için bir satır seçin.
| Sağlayıcı | Fiyat (1M başına) | Hız sınırları | Bölgeler | Durum | Gecikme |
|---|---|---|---|---|---|
Giriş: $0.30Çıkış: $2.50 | 15 RPM / 1.0M TPM | us-east-1eu-west-1global | Sağlıklı | 0ms | |
Giriş: $0.30Çıkış: $2.50 | 1K RPM / 8.0M TPM | us-east-1eu-west-1global | Sağlıklı | 0ms |
Bu modeli Google AI Studio üzerinden OpenAI uyumlu bir SDK ile kullanın.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.google-ai-studio.com/v1",
apiKey: process.env.GOOGLE_AI_STUDIO_API_KEY,
});
const response = await client.chat.completions.create({
model: "gemini-3.5-flash-lite",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Google AI Studio API kullanılıyor · OpenAI uyumlu SDK