Skip to content

inference.tenstorrent.wan2-2.img2vid.v2

{
"type": "object",
"required": [
"type",
"config"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"inference.tenstorrent.wan2-2.img2vid.v1",
"inference.tenstorrent.wan2-2.img2vid.v2"
]
},
"config": {
"type": "object",
"required": [
"prompt"
],
"additionalProperties": false,
"properties": {
"prompt": {
"type": "string",
"minLength": 1,
"maxLength": 2000,
"description": "Text description of the video to generate from the input image(s).",
"examples": [
"A kitten running in the moonlight"
]
},
"image": {
"type": "string",
"format": "filename",
"description": "First-frame image to animate into a video. Required at runtime; if omitted, the first uploaded blob is used.",
"examples": [
"first_frame.png",
"input.jpg"
]
},
"last_frame": {
"type": "string",
"format": "filename",
"description": "Optional last-frame image. When provided (or a second blob is uploaded), the video is generated as a transition from image to last_frame.",
"examples": [
"last_frame.png",
"end.jpg"
]
},
"seed": {
"type": "integer",
"minimum": 0,
"maximum": 2147483647,
"description": "A randomness initializer for video reproducibility.",
"examples": [
42,
12345
]
}
}
}
}
}