Last refreshed 2026-05-11. Next refresh: weekly.
Why use Gemini 1.5 Pro on Google AI Studio?
Google AI Studio offers Gemini 1.5 Pro with competitive pricing. Google AI Studio is a model prototyping environment and API access point for Gemini models, offering an inference playground for developers to test and build AI applications.
Compare Gemini 1.5 Pro across 2 providers to find the best fit for your use caseSetup recipe
Python + curlpip install google-genaiexport GOOGLE_API_KEY=...import os
from google import genai
client = genai.Client(api_key=os.environ["GOOGLE_API_KEY"])
response = client.models.generate_content(gemini-1.5-proRequest example
import os
from google import genai
client = genai.Client(api_key=os.environ["GOOGLE_API_KEY"])
response = client.models.generate_content(
model="gemini-1.5-pro",
contents="Hello"
)
print(response.text)Gotchas
- Use the model name directly, e.g. "gemini-2.0-flash", "gemini-1.5-pro", or "gemini-2.5-pro-preview-05-06".
- The examples expect GOOGLE_API_KEY; rename it only if your application config maps the new variable.
Compare Gemini 1.5 Pro Across Providers
| Provider | Input (per 1M) | Output (per 1M) |
|---|---|---|
| GCP Vertex AI | $1.25 | $5.00 |
| Google AI Studio | — | — |
Capabilities
About Gemini 1.5 Pro
Gemini 1.5 Pro, created by Google DeepMind, is a state-of-the-art multimodal large language model that significantly advances over its predecessors in processing and analyzing large datasets across various formats like text, images, audio, and video. It features a highly extended context window of up to 2 million tokens, allowing it to maintain coherence over lengthy interactions. With over 200 billion parameters, the model excels in tasks requiring nuanced language processing, coding assistance, and advanced reasoning. Integrated into Google's platforms such as Vertex AI, Gemini 1.5 Pro also emphasizes ethical considerations, ensuring safety and appropriateness in AI deployment.
FAQ
What is the context window for Gemini 1.5 Pro on Google AI Studio?
Gemini 1.5 Pro supports a 2,000,000 token context window on Google AI Studio.
How does Google AI Studio compare to other Gemini 1.5 Pro providers?
Gemini 1.5 Pro is available from 2 providers. The cheapest input pricing is $1.25/1M tokens from GCP Vertex AI.
Who created Gemini 1.5 Pro?
Gemini 1.5 Pro was created by Google DeepMind as part of the Gemini 1.5 model family.
Is Gemini 1.5 Pro open source?
Gemini 1.5 Pro's open source status is unknown in the seed data.