Skip to content

inference.partner.wan2-6.img2vid.v1

View markdown
{
"type": "object",
"required": [
"type",
"config"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string"
},
"config": {
"type": "object",
"required": [
"image"
],
"additionalProperties": false,
"properties": {
"image": {
"type": "string",
"format": "filename",
"description": "First-frame image to animate into a video.",
"examples": [
"first_frame.png",
"input.jpg"
]
},
"prompt": {
"type": "string",
"maxLength": 1500,
"description": "Text description of the desired video content and motion.",
"examples": [
"A cat walking through a garden"
]
},
"negative_prompt": {
"type": "string",
"maxLength": 500,
"description": "Description of content to exclude from the video.",
"examples": [
"low resolution, error, worst quality, deformed"
]
},
"resolution": {
"type": "string",
"default": "720P",
"enum": [
"720P",
"1080P"
],
"description": "Resolution tier of the generated video."
},
"duration": {
"type": "integer",
"minimum": 2,
"maximum": 15,
"default": 5,
"description": "Duration of the generated video in seconds (2-15)."
},
"seed": {
"type": "integer",
"minimum": 0,
"maximum": 2147483647,
"description": "A randomness initializer for video reproducibility.",
"examples": [
42,
12345
]
},
"prompt_extend": {
"type": "boolean",
"default": true,
"description": "Enable intelligent prompt rewriting for better results."
}
}
}
},
"$schema": "https://json-schema.org/draft/2020-12/schema"
}