Google's high-capability reasoning model with adaptive thinking for complex agentic and multimodal challenges. Features 1M token context window and strong performance on coding and scientific tasks.
1.0M tokens
2
Kullanılabilir
En ucuz
Google AI Studio
$17.50/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ş: $2.50Çıkış: $15.00 | 15 RPM / 1.0M TPM | us-east-1eu-west-1global | Sağlıklı | 0ms | |
Giriş: $2.50Çıkış: $15.00 | 360 RPM / 4.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-2.5-pro",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Google AI Studio API kullanılıyor · OpenAI uyumlu SDK