describe_image_from_file
Generate detailed descriptions of local images by providing their absolute file path. Ideal for local file access, with guidance through optional prompts. Use with volume mapping in Docker environments.
Instructions
Describe an image from a local file path. Requires proper file system access.
Best for: Local files when the server has filesystem access to the path.
Limitations: When using Docker, requires volume mapping (-v flag) to access host files.
Not recommended for: Images uploaded to chat or images with public URLs.
Args:
filepath: Absolute path to the image file
prompt: Optional prompt to guide the description
Returns:
str: Detailed description of the image
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filepath | Yes | ||
prompt | No | Please describe this image in detail. |
Input Schema (JSON Schema)
{
"properties": {
"filepath": {
"title": "Filepath",
"type": "string"
},
"prompt": {
"default": "Please describe this image in detail.",
"title": "Prompt",
"type": "string"
}
},
"required": [
"filepath"
],
"title": "describe_image_from_fileArguments",
"type": "object"
}