update_assistant
Modify and customize an existing AI assistant by updating its ID, name, API key, welcome message, prompt, AI model, and other parameters for enhanced functionality on the VoiceAI-MCP-VAVicky server.
Instructions
Update an existing assistant
Input Schema
Name | Required | Description | Default |
---|---|---|---|
active | No | Whether assistant is active | |
ai_platform | No | ||
apiKey | No | OpenAI API Key | |
assistant_id | Yes | Assistant ID | |
assistant_type | No | ||
booking_bot | No | Is booking bot | |
calendar | No | Calendar ID | |
custom_field | No | Custom field | |
location | No | GoHighLevel Location | |
name | No | Assistant name | |
openai_model | No | AI Model | |
openai_temperature | No | AI Temperature (0-2) | |
prompt | No | Instructions/Prompt | |
timezone | No | Timezone | |
welcome_message | No | Welcome message |
Input Schema (JSON Schema)
{
"properties": {
"active": {
"description": "Whether assistant is active",
"type": "boolean"
},
"ai_platform": {
"enum": [
"openai",
"gemini",
"openrouter",
"deepseek"
],
"type": "string"
},
"apiKey": {
"description": "OpenAI API Key",
"type": "string"
},
"assistant_id": {
"description": "Assistant ID",
"type": "string"
},
"assistant_type": {
"enum": [
"Text Only",
"Voice Only",
"Text & Voice",
"Voice & Text"
],
"type": "string"
},
"booking_bot": {
"description": "Is booking bot",
"type": "boolean"
},
"calendar": {
"description": "Calendar ID",
"type": "string"
},
"custom_field": {
"description": "Custom field",
"type": "string"
},
"location": {
"description": "GoHighLevel Location",
"type": "string"
},
"name": {
"description": "Assistant name",
"type": "string"
},
"openai_model": {
"description": "AI Model",
"type": "string"
},
"openai_temperature": {
"description": "AI Temperature (0-2)",
"type": "number"
},
"prompt": {
"description": "Instructions/Prompt",
"type": "string"
},
"timezone": {
"description": "Timezone",
"type": "string"
},
"welcome_message": {
"description": "Welcome message",
"type": "string"
}
},
"required": [
"assistant_id"
],
"type": "object"
}