generate_image
Create AI-generated images from text descriptions using Azure DALL-E 3 or FLUX models with automatic model selection for photorealistic or creative results.
Instructions
🎨 Create stunning AI-generated images using Azure DALL-E 3 or FLUX models with intelligent model selection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
model | No | Choose AI model: "dall-e-3" (photorealistic, artistic), "flux" (creative, flexible), or "auto" (smart selection based on prompt) | auto |
prompt | Yes | Describe the image you want to create in natural language. Be detailed for best results. Examples: "A serene mountain landscape at sunset", "Modern minimalist logo design", "Cute cartoon mascot for a coffee shop" | |
quality | No | Image quality (DALL-E only): "standard" for faster generation, "hd" for higher detail | standard |
size | No | Image dimensions: Square (1024x1024) for social media, Wide (1792x1024) for banners, Tall (1024x1792) for posters | 1024x1024 |
style | No | Visual style (DALL-E only): "vivid" for dramatic/artistic, "natural" for realistic/subdued | vivid |
Input Schema (JSON Schema)
{
"properties": {
"model": {
"default": "auto",
"description": "Choose AI model: \"dall-e-3\" (photorealistic, artistic), \"flux\" (creative, flexible), or \"auto\" (smart selection based on prompt)",
"enum": [
"dall-e-3",
"flux",
"auto"
],
"type": "string"
},
"prompt": {
"description": "Describe the image you want to create in natural language. Be detailed for best results. Examples: \"A serene mountain landscape at sunset\", \"Modern minimalist logo design\", \"Cute cartoon mascot for a coffee shop\"",
"type": "string"
},
"quality": {
"default": "standard",
"description": "Image quality (DALL-E only): \"standard\" for faster generation, \"hd\" for higher detail",
"enum": [
"standard",
"hd"
],
"type": "string"
},
"size": {
"default": "1024x1024",
"description": "Image dimensions: Square (1024x1024) for social media, Wide (1792x1024) for banners, Tall (1024x1792) for posters",
"enum": [
"1024x1024",
"1792x1024",
"1024x1792"
],
"type": "string"
},
"style": {
"default": "vivid",
"description": "Visual style (DALL-E only): \"vivid\" for dramatic/artistic, \"natural\" for realistic/subdued",
"enum": [
"vivid",
"natural"
],
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
}