imagen4
Generate high-quality images from text prompts using Google's advanced AI model. Customize image size and quantity for diverse creative needs with automatic local download.
Instructions
Imagen 4 - Google's latest text-to-image model
Input Schema
Name | Required | Description | Default |
---|---|---|---|
image_size | No | landscape_4_3 | |
num_images | No | ||
prompt | Yes | Text prompt for image generation |
Input Schema (JSON Schema)
{
"properties": {
"image_size": {
"default": "landscape_4_3",
"enum": [
"square_hd",
"square",
"portrait_4_3",
"portrait_16_9",
"landscape_4_3",
"landscape_16_9"
],
"type": "string"
},
"num_images": {
"default": 1,
"maximum": 4,
"minimum": 1,
"type": "number"
},
"prompt": {
"description": "Text prompt for image generation",
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
}