inference.sd15.txt2img.v1
Schema
{ "type": "object", "required": [ "type", "config" ], "properties": { "type": { "type": "string", "enum": [ "v2.job.sd15.txt2img", "inference.sd15.txt2img.v1", "inference.sd15.img2img.v1", "inference.sd15.inpainting.v1" ] }, "config": { "type": "object", "required": [ "prompt" ], "properties": { "prompt": { "type": "string", "minLength": 3, "maxLength": 1024, "examples": [ "puppies in a cloud, 4k" ] }, "negative_prompt": { "type": "string", "minLength": 3, "maxLength": 1024, "examples": [ "blurry" ] }, "style_preset": { "type": "string", "enum": [ "3d-model", "analog-film", "anime", "cinematic", "comic-book", "digital-art", "enhance", "fantasy-art", "isometric", "line-art", "low-poly", "neon-punk", "origami", "photographic", "pixel-art", "texture", "craft-clay" ] }, "strength": { "type": "number", "default": 0.6, "minimum": 0, "maximum": 1 }, "guidance": { "type": "number", "default": 8 }, "conditioner": { "type": "boolean", "default": false }, "seed": { "type": "integer", "examples": [ 42, 531286735183442 ] }, "steps": { "type": "integer", "default": 25, "minimum": 1, "maximum": 1000 }, "width": { "type": "integer", "default": 512 }, "height": { "type": "integer", "default": 512 } } } }}