chat_with_vision
Analyze and discuss images by uploading files or URLs, then ask questions about visual content to get detailed insights and information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
detail | No | auto | |
image_paths | No | ||
image_urls | No | ||
model | No | grok-4-0709 | |
prompt | Yes |
Input Schema (JSON Schema)
{
"properties": {
"detail": {
"default": "auto",
"title": "Detail",
"type": "string"
},
"image_paths": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Image Paths"
},
"image_urls": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Image Urls"
},
"model": {
"default": "grok-4-0709",
"title": "Model",
"type": "string"
},
"prompt": {
"title": "Prompt",
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
}