## Basic model info - Model name: pixverse/pixverse pixverse-v5.6 - Model description: PixVerse v5.6: Latest text-to-video, image-to-video and transition generation. - Endpoint name: text-to-video ## Model schema The model schema is defined in the OpenAPI schema: [OpenAPI Schema](https://oapi.sunra.ai/main/pixverse/pixverse-v5.6/latest.json) ### Model input schema The model input schema is: ```json { "description": "Input model for text-to-video generation.", "properties": { "prompt": { "description": "Text prompt for video generation", "title": "Prompt", "type": "string", "x-sr-order": 201 }, "aspect_ratio": { "default": "16:9", "description": "Aspect ratio of the generated video", "enum": [ "16:9", "4:3", "1:1", "3:4", "9:16" ], "title": "Aspect Ratio", "type": "string", "x-sr-order": 401 }, "seed": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "description": "Random seed for controllable generation", "title": "Seed", "x-sr-order": 501 }, "negative_prompt": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "description": "Negative prompt to specify what you do not want in the generated video", "title": "Negative Prompt", "x-sr-order": 203 }, "duration": { "default": 5, "description": "Duration of the video in seconds. 1080p is limited to 5 or 8 seconds.", "enum": [ 5, 8, 10 ], "title": "Duration", "type": "integer", "x-sr-order": 403 }, "generate_audio": { "default": false, "description": "Whether to generate audio for the video", "title": "Generate Audio", "type": "boolean", "x-sr-order": 405 }, "resolution": { "default": "720p", "description": "Resolution of the generated video", "enum": [ "360p", "540p", "720p", "1080p" ], "title": "Resolution", "type": "string", "x-sr-order": 402 }, "style": { "anyOf": [ { "enum": [ "anime", "3d_animation", "clay", "comic", "cyberpunk" ], "type": "string" }, { "type": "null" } ], "description": "Style of the generated video", "title": "Style", "x-sr-order": 404 }, "thinking_type": { "anyOf": [ { "enum": [ "enabled", "disabled", "auto" ], "type": "string" }, { "type": "null" } ], "description": "Prompt optimization mode: enabled to optimize, disabled to turn off, auto for model decision", "title": "Thinking Type", "x-sr-order": 406 } }, "required": [ "prompt" ], "title": "TextToVideoInput", "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": "16:9", "seed": null, "negative_prompt": null, "duration": 5, "generate_audio": false, "resolution": "720p", "style": null, "thinking_type": null } ``` ### Output example ```json { } ``` ## Model code examples ### JavaScript ```javascript import { sunra } from "@sunra/client"; const result = await sunra.subscribe("pixverse/pixverse-v5.6/text-to-video", { input: { prompt: '', negative_prompt: null, aspect_ratio: '16:9', resolution: '720p', duration: 5, style: null, seed: null, generate_audio: false, thinking_type: 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( "pixverse/pixverse-v5.6/text-to-video", arguments={ "prompt": "", "negative_prompt": None, "aspect_ratio": "16:9", "resolution": "720p", "duration": 5, "style": None, "seed": None, "generate_audio": False, "thinking_type": 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( "pixverse/pixverse-v5.6/text-to-video", SubscribeOptions.builder() .input(Map.of( "prompt", "", "negative_prompt", null, "aspect_ratio", "16:9", "resolution", "720p", "duration", 5, "style", null, "seed", null, "generate_audio", false, "thinking_type", 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 = "pixverse/pixverse-v5.6/text-to-video", input = mapOf( "prompt" to "", "negative_prompt" to null, "aspect_ratio" to "16:9", "resolution" to "720p", "duration" to 5, "style" to null, "seed" to null, "generate_audio" to false, "thinking_type" 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/pixverse/pixverse-v5.6/text-to-video \ --header "Authorization: Key $SUNRA_KEY" \ --header "Content-Type: application/json" \ --data '{"prompt":"","negative_prompt":null,"aspect_ratio":"16:9","resolution":"720p","duration":5,"style":null,"seed":null,"generate_audio":false,"thinking_type":null}' ``` ## Model readme undefined