generate_image
Create custom images from text prompts using AI image generation. Describe what you want to see and generate corresponding visuals.
Instructions
텍스트 프롬프트를 사용하여 이미지를 생성하는 도구
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| prompt | Yes | 이미지 생성을 위한 프롬프트 |
Input Schema (JSON Schema)
{
"properties": {
"prompt": {
"description": "이미지 생성을 위한 프롬프트",
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
}