inference.flux-fill.dev.v1
Schema
{ "type": "object", "required": [ "type", "config" ], "properties": { "type": { "type": "string", "enum": [ "inference.flux-fill.dev.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": 30 }, "steps": { "type": "integer", "default": 50, "minimum": 1, "maximum": 100 }, "max_sequence_length": { "type": "integer", "default": 512, "minimum": 1, "maximum": 1024 }, "seed": { "type": "integer", "examples": [ 42, 531286735183442 ] }, "width": { "type": "number", "multipleOf": 32, "minimum": 256, "maximum": 1920, "default": 1024 }, "height": { "type": "number", "multipleOf": 32, "minimum": 256, "maximum": 1920, "default": 1024 } } } }}