image_generation
Create AI-generated images from text descriptions to visualize concepts, ideas, or scenes using natural language prompts.
Instructions
Generate an image from a text prompt using AI
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| prompt | Yes | Text description of the image to generate |
Input Schema (JSON Schema)
{
"properties": {
"prompt": {
"description": "Text description of the image to generate",
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
}