> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mixroute.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Gemini Omni 1.1 Flash

> Gemini Omni 1.1 Flash: conversational video generation and editing from text, images, or video through MixRoute.

Gemini Omni 1.1 Flash is Google's high-performance model for fast, conversational video generation and editing.

MixRoute exposes `gemini-omni-1.1-flash` through the asynchronous Video Generations API.

<Warning>
  Do not call this route with Chat Completions. Use `POST /v1/video/generations`. Advanced media-input and editing fields can vary at the MixRoute route level; check the Model Marketplace before relying on optional controls.
</Warning>

## Key capabilities

* Conversational video workflows - Supports generation, editing, extension, upscaling, and interpolation upstream
* Multimodal input - Accepts text, images, and source video up to 10 seconds for editing and extension
* Video output - Produces 3-10 second video at 24 FPS, from 360p through 4K
* Asynchronous MixRoute route - Submit a task and poll its task ID for completion

## Quick example

<Tabs>
  <Tab title="cURL">
    ```bash theme={null}
    curl -X POST "https://api.mixroute.ai/v1/video/generations" \
      -H "Authorization: Bearer YOUR_API_KEY" \
      -H "Content-Type: application/json" \
      -d '{
        "model": "gemini-omni-1.1-flash",
        "prompt": "Create a six-second cinematic video of a paper city unfolding at sunrise."
      }'
    ```
  </Tab>

  <Tab title="Python">
    ```python theme={null}
    import requests

    response = requests.post(
        "https://api.mixroute.ai/v1/video/generations",
        headers={"Authorization": "Bearer YOUR_API_KEY"},
        json={
            "model": "gemini-omni-1.1-flash",
            "prompt": "Create a six-second cinematic video of a paper city unfolding at sunrise.",
        },
    )
    response.raise_for_status()
    print(response.json())
    ```
  </Tab>
</Tabs>

## Workflow

1. Submit the task with `POST /v1/video/generations`.
2. Read the returned task ID.
3. Poll the result using [Query Video Task](/en/api-reference/endpoint/query-video-task).

## Parameters

| Parameter | Type   | Required | Description                              |
| --------- | ------ | -------- | ---------------------------------------- |
| `model`   | string | Yes      | Model ID: `gemini-omni-1.1-flash`.       |
| `prompt`  | string | Yes      | Video generation or editing instruction. |

## Vendor reference

* [Gemini Omni Flash documentation](https://ai.google.dev/gemini-api/docs/models/gemini-omni-flash)
