generate_image
Create high-quality images from text prompts using DALL-E 3. Specify size, quality, and style, then save the output to a designated path for versatile visual content generation.
Instructions
Generate an image using DALL-E 3
Input Schema
Name | Required | Description | Default |
---|---|---|---|
output_path | Yes | Full path where the image should be saved | |
prompt | Yes | Text prompt for image generation | |
quality | No | Image quality | hd |
size | No | Image size | 1024x1024 |
style | No | Image style | vivid |
Input Schema (JSON Schema)
{
"properties": {
"output_path": {
"description": "Full path where the image should be saved",
"type": "string"
},
"prompt": {
"description": "Text prompt for image generation",
"type": "string"
},
"quality": {
"default": "hd",
"description": "Image quality",
"enum": [
"standard",
"hd"
],
"type": "string"
},
"size": {
"default": "1024x1024",
"description": "Image size",
"enum": [
"1024x1024",
"1024x1792",
"1792x1024"
],
"type": "string"
},
"style": {
"default": "vivid",
"description": "Image style",
"enum": [
"vivid",
"natural"
],
"type": "string"
}
},
"required": [
"prompt",
"output_path"
],
"type": "object"
}