Supported Models and ParametersVideo Models
Gemini Omni Flash
Currently exposed duration, resolution, and aspect-ratio parameters for gemini_omni_flash.
gemini_omni_flash is Gemini Omni video generation currently restricted to 10 seconds. Its backend model schema is the source of truth for supported parameters.
Quick Facts
| Item | Value |
|---|---|
| Model ID | gemini_omni_flash |
| Type | Video |
| Region | Global / CN |
| Best For | Gemini Omni video generation currently restricted to 10 seconds |
Recommended Request Shape
Call POST /v1/quote first and send exactly the same parameters when creating the task.
{
"model": "gemini_omni_flash",
"prompt": "A cinematic product reveal",
"duration": 10,
"resolution": "720p",
"aspect_ratio": "16:9"
}Field Reference
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
model | string | Yes | - | Must be gemini_omni_flash |
prompt | string | Yes | - | Video prompt |
reference_images | string[] | No | - | Reference image URLs |
duration | integer | No | 10 | Currently fixed at 10 seconds |
resolution | string | No | 720p | Output resolution |
aspect_ratio | string | No | 16:9 | Frame ratio |
Supported Enums
| Field | Values |
|---|---|
duration | 10 |
resolution | 720p 1080p |
aspect_ratio | 16:9 9:16 |
Gemini Omni Flash Integration Notes
- Only 10-second output is currently exposed; do not submit 4 or 6 seconds.
- 1080p depends on its supporting route; always follow the live
/v1/modelsschema. - Do not send fields absent from the model schema; use the live
GET /v1/modelsresponse as authoritative.
Smallest Example
{
"model": "gemini_omni_flash",
"prompt": "A cinematic product reveal"
}