usamaehsan/ltx-25-distilled
Public
7
runs
Run usamaehsan/ltx-25-distilled with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
| Field | Type | Default value | Description |
|---|---|---|---|
| prompt |
string
|
Text prompt describing the video
|
|
| image |
string
|
Optional first-frame image (image-to-video)
|
|
| width |
integer
|
768
Min: 256 Max: 1536 |
None
|
| height |
integer
|
1280
Min: 256 Max: 1536 |
None
|
| duration |
number
|
4
Min: 1 Max: 10 |
Clip length in seconds
|
| seed |
integer
|
-1
|
-1 = random
|
{
"type": "object",
"title": "Input",
"required": [
"prompt"
],
"properties": {
"seed": {
"type": "integer",
"title": "Seed",
"default": -1,
"x-order": 5,
"description": "-1 = random"
},
"image": {
"type": "string",
"title": "Image",
"format": "uri",
"x-order": 1,
"description": "Optional first-frame image (image-to-video)"
},
"width": {
"type": "integer",
"title": "Width",
"default": 768,
"maximum": 1536,
"minimum": 256,
"x-order": 2
},
"height": {
"type": "integer",
"title": "Height",
"default": 1280,
"maximum": 1536,
"minimum": 256,
"x-order": 3
},
"prompt": {
"type": "string",
"title": "Prompt",
"x-order": 0,
"description": "Text prompt describing the video"
},
"duration": {
"type": "number",
"title": "Duration",
"default": 4,
"maximum": 10,
"minimum": 1,
"x-order": 4,
"description": "Clip length in seconds"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "string",
"title": "Output",
"format": "uri"
}