describe_image
Generate detailed descriptions of images using base64-encoded data. Ideal for uploaded images in chat conversations, providing accurate analysis via advanced vision APIs.
Instructions
Describe an image from base64-encoded data. Use for images directly uploaded to chat.
Best for: Images uploaded to the current conversation where no public URL exists.
Not for: Local files on your computer or images with public URLs.
Args:
image: Base64-encoded image data
prompt: Optional prompt to guide the description
Returns:
str: Detailed description of the image
Input Schema
Name | Required | Description | Default |
---|---|---|---|
image | Yes | ||
prompt | No | Please describe this image in detail. |
Input Schema (JSON Schema)
{
"properties": {
"image": {
"title": "Image",
"type": "string"
},
"prompt": {
"default": "Please describe this image in detail.",
"title": "Prompt",
"type": "string"
}
},
"required": [
"image"
],
"title": "describe_imageArguments",
"type": "object"
}