## Basic model info - Model name: google/google gemini-omni-flash - Model description: Gemini Omni Flash by Google. Generate video with synchronized audio from a text prompt or images. With sound on! - Endpoint name: image-to-video ## Model schema The model schema is defined in the OpenAPI schema: [OpenAPI Schema](https://oapi.sunra.ai/main/google/gemini-omni-flash/latest.json) ### Model input schema The model input schema is: ```json { "description": "Input model for image-to-video generation via Gemini Omni Flash.", "properties": { "prompt": { "description": "The prompt describing how to animate the image", "title": "Prompt", "type": "string", "x-sr-order": 200 }, "aspect_ratio": { "default": "auto", "description": "The aspect ratio of the generated video. \"auto\" (default) matches the input orientation for image/reference inputs and falls back to 16:9 for text-only.", "enum": [ "auto", "16:9", "9:16" ], "title": "Aspect Ratio", "type": "string", "x-sr-order": 401 }, "image": { "anyOf": [ { "format": "uri", "maxLength": 2083, "minLength": 1, "type": "string" }, { "type": "string" } ], "description": "The image to animate into a video", "title": "Image", "x-sr-order": 301 } }, "required": [ "prompt", "image" ], "title": "ImageToVideoInput", "type": "object" } ``` ### Model output schema The model output schema is: ```json { "description": "Output model with video duration for post_calculated (per-second) pricing.", "properties": { "output_video_dur": { "description": "Duration of the output video in seconds (rounded), used for per-second billing", "title": "Output Video Dur", "type": "integer" }, "video": { "properties": { "content_type": { "description": "The mime type of the file.", "title": "Content Type", "type": "string" }, "file_name": { "description": "The name of the file. It will be auto-generated if not provided.", "title": "File Name", "type": "string" }, "file_size": { "description": "The size of the file in bytes.", "title": "File Size", "type": "integer" }, "url": { "description": "The URL where the file can be downloaded from.", "title": "Url", "type": "string" } }, "required": [ "content_type", "file_name", "file_size", "url" ], "title": "SunraFile", "type": "object" } }, "required": [ "video", "output_video_dur" ], "title": "OmniVideoOutput", "type": "object" } ``` ## Example inputs and outputs Use the following example inputs and outputs to understand the model. ### Input example ```json { "prompt": "", "aspect_ratio": "auto", "image": "" } ``` ### Output example ```json { } ``` ## Model code examples ### JavaScript ```javascript import { sunra } from "@sunra/client"; const result = await sunra.subscribe("google/gemini-omni-flash/image-to-video", { input: { prompt: '', image: '', aspect_ratio: 'auto' }, logs: true, onQueueUpdate: (update) => { console.log(`Status Update: ${update.status}, Request ID: ${update.request_id}`); }, }); console.log(result.data); console.log(result.requestId); ``` ### Python ```python import sunra_client result = sunra_client.subscribe( "google/gemini-omni-flash/image-to-video", arguments={ "prompt": "", "image": "", "aspect_ratio": "auto" }, with_logs=True, on_enqueue=print, on_queue_update=print, ) print(result) ``` ### Java ```java import ai.sunra.client.*; import java.util.Map; import com.google.gson.JsonObject; var client = SunraClient.withEnvCredentials(); var response = client.subscribe( "google/gemini-omni-flash/image-to-video", SubscribeOptions.builder() .input(Map.of( "prompt", "", "image", "", "aspect_ratio", "auto")) .resultType(JsonObject.class) .onQueueUpdate(update -> System.out.printf( "\nStatus Update: %s, Request ID: %s%n", update.getStatus(), update.getRequestId() )) .logs(true) .build() ); System.out.println("Completed!"); System.out.println(response.getData()); ``` ### Kotlin ```kotlin import ai.sunra.client.kt.* import com.google.gson.JsonObject val client = createSunraClient() val response = client.subscribe( endpointId = "google/gemini-omni-flash/image-to-video", input = mapOf( "prompt" to "", "image" to "", "aspect_ratio" to "auto"), options = ai.sunra.client.kt.SubscribeOptions(logs = true), onUpdate = { update -> println("\nStatus Update: ${update.status}, Request ID: ${update.requestId}") } ) println("Completed!") println(response.data) ``` ### Curl ```bash curl --request POST \ --url https://api.sunra.ai/v1/queue/google/gemini-omni-flash/image-to-video \ --header "Authorization: Key $SUNRA_KEY" \ --header "Content-Type: application/json" \ --data '{"prompt":"","image":"","aspect_ratio":"auto"}' ``` ## Model readme >