Last refreshed 2026-08-28. Next refresh: weekly.
Why use Gemini Omni 1.1 Flash on Google AI Studio?
Google AI Studio offers Gemini Omni 1.1 Flash with pay-as-you-go pricing at $1.50/1M input tokens. 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.
Setup 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-omni-1.1-flashRequest example
import os
from google import genai
client = genai.Client(api_key=os.environ["GOOGLE_API_KEY"])
response = client.models.generate_content(
model="gemini-omni-1.1-flash",
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.
Pricing
| Type | Price (per 1M) |
|---|---|
| Input tokens | $1.50 |
| Output tokens | $17.50 |
Capabilities
About Gemini Omni 1.1 Flash
Gemini Omni 1.1 Flash is Google DeepMind's generally available video generation and editing model, released August 27, 2026. It provides fast conversational video generation and editing through the Gemini API and Interactions API, with scene extension, interpolation, resolution upscaling, and support for video references. It accepts text, image, and video input and outputs video with native audio at 360p, 720p, 1080p, or 4K (3s–10s at 24 FPS). Official model ID: gemini-omni-1.1-flash. Compare it for Video generation.