Google DeepMind's flagship Gemini model, rebuilt on a new foundation with a 2M-token context window and a Deep Think reasoning mode for the hardest math, coding, and multimodal tasks. Natively multimodal across text, image, audio, and video with streaming function calling and strong long-context grounding.
2.0M tokens
1
available
Cheapest
Google Cloud Vertex AI
$32.00/1M tokens
Google Cloud Vertex AI
Sorted by total cost (input + output per 1M tokens). Click a row to view provider details.
| Provider | Pricing (per 1M) | Rate Limits | Regions | Health | Latency |
|---|---|---|---|---|---|
In: $8.00Out: $24.00 | 360 RPM / 4.0M TPM | us-east-1eu-west-1global | Healthy | 0ms |
Use this model via Google Cloud Vertex AI with an OpenAI-compatible SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://generativelanguage.googleapis.com/v1beta",
apiKey: process.env.GOOGLE_API_KEY,
});
const response = await client.chat.completions.create({
model: "gemini-3.5-pro",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Using Google Cloud Vertex AI API • OpenAI-compatible SDK