flux_kontext
Generate high-quality images adhering to text prompts with precise typography and customizable parameters such as size, quantity, and inference steps.
Instructions
FLUX Kontext Pro - State-of-the-art prompt adherence and typography
Input Schema
Name | Required | Description | Default |
---|---|---|---|
guidance_scale | No | ||
image_size | No | landscape_4_3 | |
num_images | No | ||
num_inference_steps | No | ||
prompt | Yes | Text prompt for image generation |
Input Schema (JSON Schema)
{
"properties": {
"guidance_scale": {
"default": 3.5,
"maximum": 20,
"minimum": 1,
"type": "number"
},
"image_size": {
"default": "landscape_4_3",
"enum": [
"square_hd",
"square",
"portrait_4_3",
"portrait_16_9",
"landscape_4_3",
"landscape_16_9"
],
"type": "string"
},
"num_images": {
"default": 1,
"maximum": 4,
"minimum": 1,
"type": "number"
},
"num_inference_steps": {
"default": 25,
"maximum": 50,
"minimum": 1,
"type": "number"
},
"prompt": {
"description": "Text prompt for image generation",
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
}