firstMessageInterruptionsEnable: true aint working
this aint working when tried to interrupt using add-message | vapi.send
triggerResponseEnabled- this also set to true
triggerResponseEnabled- this also set to true
firstMessageInterruptionsEnable: true isn't working as expected. Try using the mute-assistant control message instead:⤵️ Mention @Vapi Support Bot for follow-ups 🐥
firstMessageInterruptionsEnable: true isn't working as expected. Try using the mute-assistant control message instead:⤵️ Mention @Vapi Support Bot for follow-ups 🐥
firstMessage to an empty string and place your initial greeting or instruction in the system prompt. For example:assistant-speaks-first-with-model-generated-message flag—use the system prompt as shown above.firstMessageInterruptionsEnable: truefirstMessageInterruptionsEnable: truemute-assistantmute-assistantfirstMessageassistant-speaks-first-with-model-generated-messagevapi.send({
type: 'control',
control: 'mute-assistant'
})vapi.send({
type: 'control',
control: 'mute-assistant'
})const assistantConfig = {
firstMessage: "",
model: {
provider: "openai",
model: "gpt-4",
messages: [
{
role: "system",
content: "Hi there! How can I help you today?"
}
]
},
// ...other config
};