Google DeepMind's workhorse Flash model that builds on Gemini 3.5 Flash with better coding, knowledge work, and multimodal performance while reducing output token usage by roughly 17% per the Artificial Analysis Index. Natively multimodal across text, image, audio, and video with a 1M-token context window, configurable thinking levels, and built-in computer use, tuned for scaling agentic workflows at a lower cost per output token.
1.0M tokens
2
Доступна
Самый доступный
Google AI Studio
$9.00/1M tokens
Google AI Studio, Google Cloud Vertex AI
Сортировка по общей стоимости входных и выходных токенов за 1 млн. Выберите строку, чтобы открыть страницу провайдера.
| Провайдер | Цена за 1 млн | Лимиты | Регионы | Состояние | Задержка |
|---|---|---|---|---|---|
Вход: $1.50Выход: $7.50 | 15 RPM / 1.0M TPM | us-east-1eu-west-1global | Работает | 0ms | |
Вход: $1.50Выход: $7.50 | 1K RPM / 8.0M TPM | us-east-1eu-west-1global | Работает | 0ms |
Используйте эту модель через Google AI Studio с OpenAI-совместимым SDK.
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.6-flash",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);API Google AI Studio · OpenAI-совместимый SDK