## Basic model info - Model name: google/google veo3-1-fast - Model description: Faster and more cost effective version of Google's Veo 3.1! - Endpoint name: extend-video ## Model schema The model schema is defined in the OpenAPI schema: [OpenAPI Schema](https://oapi.sunra.ai/main/google/veo3-1-fast/latest.json) ### Model input schema The model input schema is: ```json { "description": "Input model for extending an existing video. Duration is fixed at 7 seconds, resolution at 720p.", "properties": { "prompt": { "description": "Text prompt describing how the video should be extended", "title": "Prompt", "type": "string", "x-sr-order": 201 }, "aspect_ratio": { "default": "auto", "description": "Aspect ratio of the generated video", "enum": [ "auto", "16:9", "9:16" ], "title": "Aspect Ratio", "type": "string", "x-sr-order": 401 }, "video_url": { "anyOf": [ { "format": "uri", "maxLength": 2083, "minLength": 1, "type": "string" }, { "type": "string" } ], "description": "URL of the video to extend. Should be 720p or 1080p in 16:9 or 9:16 aspect ratio.", "title": "Video Url", "x-sr-order": 301 }, "seed": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "description": "Seed for the random number generator", "title": "Seed", "x-sr-order": 405 }, "negative_prompt": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "description": "A negative prompt to guide the video generation", "title": "Negative Prompt", "x-sr-order": 202 }, "generate_audio": { "default": true, "description": "Whether to generate audio for the video", "title": "Generate Audio", "type": "boolean", "x-sr-order": 404 } }, "required": [ "prompt", "video_url" ], "title": "ExtendVideoInput", "type": "object" } ``` ### Model output schema The model output schema is: ```json { "properties": { "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" ], "title": "VideoOutput", "type": "object" } ``` ## Example inputs and outputs Use the following example inputs and outputs to understand the model. ### Input example ```json { "prompt": "", "aspect_ratio": "auto", "video_url": "", "seed": null, "negative_prompt": null, "generate_audio": true } ``` ### Output example ```json { } ``` ## Model code examples ### JavaScript ```javascript import { sunra } from "@sunra/client"; const result = await sunra.subscribe("google/veo3-1-fast/extend-video", { input: { prompt: '', negative_prompt: null, video_url: '', aspect_ratio: 'auto', generate_audio: true, seed: null }, 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/veo3-1-fast/extend-video", arguments={ "prompt": "", "negative_prompt": None, "video_url": "", "aspect_ratio": "auto", "generate_audio": True, "seed": None }, 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/veo3-1-fast/extend-video", SubscribeOptions.builder() .input(Map.of( "prompt", "", "negative_prompt", null, "video_url", "", "aspect_ratio", "auto", "generate_audio", true, "seed", null)) .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/veo3-1-fast/extend-video", input = mapOf( "prompt" to "", "negative_prompt" to null, "video_url" to "", "aspect_ratio" to "auto", "generate_audio" to true, "seed" to null), 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/veo3-1-fast/extend-video \ --header "Authorization: Key $SUNRA_KEY" \ --header "Content-Type: application/json" \ --data '{"prompt":"","negative_prompt":null,"video_url":"","aspect_ratio":"auto","generate_audio":true,"seed":null}' ``` ## Model readme >