|
<< Click to Display Table of Contents >> Navigation: 3. Script Language > AI - Artificial Intelligence Commands > AIC. - Artificial Intelligence Command > AIC. - Artificial Intelligence Command |
AIC.AskMultiVision |
Top |
MiniRobotLanguage (MRL)
AIC.AskMultiVision
Ask with multiple images (Vision)
Intention
The AIC.AskMultiVision command sends multiple local images to OpenAI's Vision API along with a question. The AI can analyze and compare multiple images in a single request.
Syntax
AIC.AskMultiVision|$$Prompt|$$ImageList[|$$RetVar]
P1 - $$Prompt - Question or instruction about the images
P2 - $$ImageList - Semicolon-separated list of image file paths
P3 - $$RetVar (optional) - Variable to store the response
Example
' Compare two images
AIC.AskMultiVision|What are the differences?|C:\img1.jpg;C:\img2.jpg|$$Diff
DBP.$$Diff
' Analyze multiple screenshots
AIC.AskMultiVision|Describe all these images|$$Images|$$Desc
DBP.$$Desc
Related Commands
- AIC.AskVision - Single image vision
- AIC.AskMultiVisionUrl - Multi vision with URLs
- AIC.SetVisionModel - Set vision model