describe_image
Describe local images with AI vision. Supply an absolute file path to get a detailed text description, and optionally add a custom prompt.
Instructions
Pass a local image file to a vision-capable AI and get back a text description.
IMPORTANT: The image parameter MUST be a local absolute file path on disk.
Do NOT pass URLs, base64 strings, or data URIs — always provide the full
absolute path to an image file (e.g. "C:\Users\photos\cat.jpg" or
"/home/user/images/pic.png"). Supported formats: PNG, JPG, JPEG, GIF, WEBP.
Parameters: image (str, required): Local absolute file path to the image. prompt (str, optional): Instruction for the vision model. Defaults to 'Describe this image in detail.'
Returns: Text description produced by the vision model.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| image | Yes | Local absolute file path to the image (e.g. C:\Users\photos\cat.jpg). MUST be a real file on disk — not a URL, not base64. | |
| prompt | No | Instruction for the vision model. | Describe this image in detail. |