qwen_analyze_image
Analyze images using Qwen's multimodal AI to generate descriptions, answer questions, and extract information from local files, URLs, or base64-encoded images.
Instructions
Use Qwen CLI to describe or analyze an image with its multimodal capabilities.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| image | Yes | Local file path, http(s) URL, or base64-encoded image to analyze. | |
| prompt | No | Instruction for Qwen. Defaults to config value. | |
| model | No | Qwen model identifier. | |
| cliPath | No | Override the Qwen CLI executable path. | |
| sandbox | No | Whether to run the CLI with the sandbox flag (-s). | |
| extraFlags | No | Additional CLI flags to append as-is. | |
| timeoutMs | No | Maximum time (in milliseconds) to wait for CLI execution. |
Input Schema (JSON Schema)
{
"properties": {
"cliPath": {
"description": "Override the Qwen CLI executable path.",
"minLength": 1,
"type": "string"
},
"extraFlags": {
"description": "Additional CLI flags to append as-is.",
"items": {
"minLength": 1,
"type": "string"
},
"type": "array"
},
"image": {
"description": "Local file path, http(s) URL, or base64-encoded image to analyze.",
"minLength": 1,
"type": "string"
},
"model": {
"description": "Qwen model identifier.",
"minLength": 1,
"type": "string"
},
"prompt": {
"description": "Instruction for Qwen. Defaults to config value.",
"minLength": 1,
"type": "string"
},
"sandbox": {
"description": "Whether to run the CLI with the sandbox flag (-s).",
"type": "boolean"
},
"timeoutMs": {
"description": "Maximum time (in milliseconds) to wait for CLI execution.",
"exclusiveMinimum": 0,
"maximum": 600000,
"type": "integer"
}
},
"required": [
"image"
],
"type": "object"
}