generate_image_using_dalle3
Generate high-quality images from text prompts with DALL-E 3, saving them to a specified absolute path. Customize size, quality, and style for tailored visual outputs.
Instructions
Generate an image using DALL-E 3 (Azure or OpenAI) based on a text prompt and save it to an absolute path.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
outputPath | Yes | Required. Absolute path to save the generated image (e.g., 'd:/images/output.png'). Relative paths are not allowed. | |
prompt | Yes | Text description of the desired image | |
quality | No | Quality of the generated image. | standard |
size | No | Size of the generated image. | |
style | No | Style of the generated image. | vivid |
Input Schema (JSON Schema)
{
"properties": {
"outputPath": {
"description": "Required. Absolute path to save the generated image (e.g., 'd:/images/output.png'). Relative paths are not allowed.",
"type": "string"
},
"prompt": {
"description": "Text description of the desired image",
"type": "string"
},
"quality": {
"default": "standard",
"description": "Quality of the generated image.",
"enum": [
"standard",
"hd"
],
"type": "string"
},
"size": {
"description": "Size of the generated image.",
"enum": [
"1024x1024",
"1792x1024",
"1024x1792"
],
"type": "string"
},
"style": {
"default": "vivid",
"description": "Style of the generated image.",
"enum": [
"vivid",
"natural"
],
"type": "string"
}
},
"required": [
"prompt",
"outputPath"
],
"type": "object"
}