inference.flux.pro.txt2img.v1
Schema
{ "type": "object", "required": [ "type", "config" ], "properties": { "type": { "type": "string", "enum": [ "inference.flux.pro.txt2img.v1" ] }, "config": { "type": "object", "required": [ "prompt" ], "properties": { "prompt": { "type": "string", "minLength": 3, "maxLength": 4096, "examples": [ "puppies in a cloud, 4k" ] }, "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" ] }, "guidance_scale": { "type": "number", "default": 3, "minimum": 2, "maximum": 5 }, "steps": { "type": "integer", "default": 25, "minimum": 1, "maximum": 100 }, "seed": { "type": "integer", "examples": [ 42, 531286735183442 ] }, "width": { "type": "number", "multipleOf": 32, "minimum": 256, "maximum": 1440, "default": 1024 }, "height": { "type": "number", "multipleOf": 32, "minimum": 256, "maximum": 1440, "default": 768 } } } }}