A. Salem
05/14/2024, 5:59 PMVapi Support
05/14/2024, 5:59 PMVapi Support
05/14/2024, 5:59 PMbackchannelingEnabled setting to false when creating or updating your assistant.
Here's an example of how to disable backchanneling:
json
{
"name": "Your Assistant Name",
"backchannelingEnabled": false,
"firstMessage": "Hello! How can I assist you today?",
"serverUrl": "https://your-server-url.com",
"model": {
"provider": "openai",
"model": "gpt-4-turbo"
},
"voice": {
"provider": "azure",
"voiceId": "andrew"
}
}
[(1)]() , [(2)]()
By setting backchannelingEnabled to false, the assistant will no longer interject with backchannel cues during function tool operations.Sahil
05/15/2024, 8:18 AM