inference.partner.wan2-6.txt2img.v1
Schema
Section titled “Schema”{ "type": "object", "required": [ "type", "config" ], "additionalProperties": false, "properties": { "type": { "type": "string" }, "config": { "type": "object", "required": [ "prompt" ], "additionalProperties": false, "properties": { "prompt": { "type": "string", "minLength": 1, "maxLength": 2000, "description": "Text description of the image to generate. Supports Chinese and English.", "examples": [ "A serene mountain landscape at sunset with vibrant colors" ] }, "negative_prompt": { "type": "string", "maxLength": 500, "description": "Description of content you do not want in the image.", "examples": [ "Low resolution, blurry, deformed" ] }, "size": { "type": "string", "default": "1024*1024", "description": "Output image resolution in width*height format.", "examples": [ "1024*1024", "1280*720", "720*1280", "2048*2048" ] }, "seed": { "type": "integer", "minimum": 0, "maximum": 2147483647, "description": "A randomness initializer for image 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"}