chat_with_assistant
Engage in real-time conversations with a specific AI assistant by sending messages through the VoiceAI-MCP-VAVicky server. Supports text or audio responses for interactive communication.
Instructions
Chat with a specific assistant
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assistant_id | Yes | Assistant ID | |
audio | No | Enable audio response | |
message | Yes | Message to send | |
thread_id | Yes | Chat/Thread ID |
Input Schema (JSON Schema)
{
"properties": {
"assistant_id": {
"description": "Assistant ID",
"type": "string"
},
"audio": {
"default": false,
"description": "Enable audio response",
"type": "boolean"
},
"message": {
"description": "Message to send",
"type": "string"
},
"thread_id": {
"description": "Chat/Thread ID",
"type": "string"
}
},
"required": [
"assistant_id",
"message",
"thread_id"
],
"type": "object"
}