rdms_download_image
Download images from the RDMS system via URL and optionally analyze them for AI processing. Specify a filename for saved images or enable analysis directly.
Instructions
Download and optionally analyze image from RDMS system
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analyze | No | Whether to return image for AI analysis | |
filename | No | Optional filename for saved image | |
imageUrl | Yes | Image URL from RDMS |
Input Schema (JSON Schema)
{
"properties": {
"analyze": {
"default": true,
"description": "Whether to return image for AI analysis",
"type": "boolean"
},
"filename": {
"description": "Optional filename for saved image",
"type": "string"
},
"imageUrl": {
"description": "Image URL from RDMS",
"type": "string"
}
},
"required": [
"imageUrl"
],
"type": "object"
}