LLM Reference
Google AI Studio

Gemini Omni 1.1 Flash on Google AI Studio

Gemini Omni · Google DeepMind

Serverless

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.

Input / 1M
$1.50
Output / 1M
$17.50
Cache
Not sourced
Batch
Not sourced

Setup recipe

Python + curl
Install
pip install google-genai
Auth
export GOOGLE_API_KEY=...
Call
import os
from google import genai
client = genai.Client(api_key=os.environ["GOOGLE_API_KEY"])
response = client.models.generate_content(
Model ID
gemini-omni-1.1-flash

Request 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

TypePrice (per 1M)
Input tokens$1.50
Output tokens$17.50

Capabilities

VisionMultimodalAudio

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.

Get Started