Ask the LLM about a TOP (multimodal)
copilot_visionSend a TOP preview and a custom question to a vision LLM to get an AI-generated answer about the image.
Instructions
Capture a TOP as a preview image and ask the configured multimodal LLM a question about it. Returns {source_top, question, width, height, answer, model?, stop_reason?, warnings[]}. Uses ctx.llm.complete() with a MultimodalMessage (text + image part). Requires an LLM backend (TDMCP_LLM_BASE_URL / MCP sampling); returns a friendly error otherwise. Different from caption_top, which is deterministic-by-default — this tool ALWAYS routes through the vision model with the artist's custom question.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| source_top | Yes | Path of the TOP to send to the vision LLM. | |
| question | Yes | Question or instruction about the image (e.g. 'what colors dominate?'). | |
| width | No | Width to render the preview at before sending. | |
| height | No | Height to render the preview at before sending. | |
| max_tokens | No | Upper bound on response tokens. | |
| system | No | Optional system instruction (defaults to a TouchDesigner vision-assistant prompt). |