## Basic model info - Model name: minimax/minimax hailuo-2.3 - Model description: MiniMax Hailuo-2.3: Advanced text-to-video generation model with 768p resolution. - Endpoint name: text-to-video ## Model schema The model schema is defined in the OpenAPI schema: [OpenAPI Schema](https://oapi.sunra.ai/main/minimax/hailuo-2.3/latest.json) ### Model input schema The model input schema is: ```json { "properties": { "prompt": { "description": "The prompt for the video", "maxLength": 2500, "title": "Prompt", "type": "string", "x-sr-order": 200 }, "prompt_enhancer": { "default": true, "description": "Whether to use the model's prompt optimizer", "title": "Prompt Enhancer", "type": "boolean", "x-sr-order": 201 }, "duration": { "default": 6, "description": "The duration of the video in seconds", "enum": [ 6, 10 ], "title": "Duration", "type": "integer", "x-sr-order": 402 }, "resolution": { "default": "768p", "description": "The resolution of the video. 768p supports 6s and 10s duration, 1080p only supports 6s duration", "enum": [ "768p", "1080p" ], "title": "Resolution", "type": "string", "x-sr-order": 401 } }, "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": "", "prompt_enhancer": true, "duration": 6, "resolution": "768p" } ``` ### Output example ```json { } ``` ## Model code examples ### JavaScript ```javascript import { sunra } from "@sunra/client"; const result = await sunra.subscribe("minimax/hailuo-2.3/text-to-video", { input: { prompt: '', prompt_enhancer: true, resolution: '768p', duration: 6 }, 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( "minimax/hailuo-2.3/text-to-video", arguments={ "prompt": "", "prompt_enhancer": True, "resolution": "768p", "duration": 6 }, 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( "minimax/hailuo-2.3/text-to-video", SubscribeOptions.builder() .input(Map.of( "prompt", "", "prompt_enhancer", true, "resolution", "768p", "duration", 6)) .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 = "minimax/hailuo-2.3/text-to-video", input = mapOf( "prompt" to "", "prompt_enhancer" to true, "resolution" to "768p", "duration" to 6), 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/minimax/hailuo-2.3/text-to-video \ --header "Authorization: Key $SUNRA_KEY" \ --header "Content-Type: application/json" \ --data '{"prompt":"","prompt_enhancer":true,"resolution":"768p","duration":6}' ``` ## Model readme >