analyze_image
Analyze image content using Google's Gemini Pro Vision AI to extract descriptions, identify objects, or answer questions about visual data.
Instructions
Analyze an image using Gemini 2.5 Pro Vision
Input Schema
Name | Required | Description | Default |
---|---|---|---|
imageData | Yes | Base64 encoded image data | |
prompt | No | Text prompt to describe what to analyze in the image | Describe this image |
Input Schema (JSON Schema)
{
"properties": {
"imageData": {
"description": "Base64 encoded image data",
"type": "string"
},
"prompt": {
"default": "Describe this image",
"description": "Text prompt to describe what to analyze in the image",
"type": "string"
}
},
"required": [
"imageData"
],
"type": "object"
}