inference.tenstorrent.wan2-2.txt2vid.v1
Schema
Section titled “Schema”{ "type": "object", "required": [ "type", "config" ], "additionalProperties": false, "properties": { "type": { "type": "string", "enum": [ "inference.tenstorrent.wan2-2.txt2vid.v1", "inference.tenstorrent.wan2-2.txt2vid.v2" ] }, "config": { "type": "object", "required": [ "prompt" ], "additionalProperties": false, "properties": { "prompt": { "type": "string", "minLength": 1, "maxLength": 2000, "description": "Text description of the video to generate.", "examples": [ "A kitten running in the moonlight" ] }, "negative_prompt": { "type": "string", "maxLength": 500, "description": "Description of content to exclude from the video.", "examples": [ "low resolution, blurry, deformed" ] }, "seed": { "type": "integer", "minimum": 0, "maximum": 2147483647, "description": "A randomness initializer for video reproducibility.", "examples": [ 42, 12345 ] } } } }}