inference.seedream-5-0.lite.img2img.v1
Schema
Section titled “Schema”{ "type": "object", "required": [ "type", "config" ], "additionalProperties": false, "properties": { "type": { "type": "string", "enum": [ "inference.seedream-5-0.lite.img2img.v1" ] }, "config": { "type": "object", "required": [ "prompt" ], "additionalProperties": false, "properties": { "images": { "type": "array", "minItems": 1, "maxItems": 14, "items": { "type": "string", "format": "filename" }, "description": "Input images for multi-image blending." }, "prompt": { "type": "string", "minLength": 3, "maxLength": 4096, "default": "a dancing cat under moonlight", "description": "Description of desired output." }, "width": { "type": "number", "minimum": 1024, "maximum": 4096, "default": 2048, "description": "Number of pixels wide." }, "height": { "type": "number", "minimum": 1024, "maximum": 4096, "default": 2048, "description": "Number of pixels tall." }, "watermark": { "type": "boolean", "default": false, "description": "When set to true a watermark is added indicating the output is AI generated." } } } }}