YeeHooDevelopers
Developer Docs
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

ItemValue
Model IDgemini_omni_flash
TypeVideo
RegionGlobal / CN
Best ForGemini 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

FieldTypeRequiredDefaultDescription
modelstringYes-Must be gemini_omni_flash
promptstringYes-Video prompt
reference_imagesstring[]No-Reference image URLs
durationintegerNo10Currently fixed at 10 seconds
resolutionstringNo720pOutput resolution
aspect_ratiostringNo16:9Frame ratio

Supported Enums

FieldValues
duration10
resolution720p 1080p
aspect_ratio16: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/models schema.
  • Do not send fields absent from the model schema; use the live GET /v1/models response as authoritative.

Smallest Example

{
  "model": "gemini_omni_flash",
  "prompt": "A cinematic product reveal"
}

Related Pages