inference.seedream-4.txt2img.v1
Schema
Section titled “Schema”{ "type": "object", "required": [ "type", "config" ], "additionalProperties": false, "properties": { "type": { "type": "string", "enum": [ "inference.seedream-4.txt2img.v1" ] }, "config": { "type": "object", "required": [ "prompt" ], "additionalProperties": false, "properties": { "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." } } } }}