Charlie
11/18/2025, 4:19 PMVapi Support Bot
11/18/2025, 4:21 PM<break> tags for pauses) is automatically enabled**—you do not need to manually set enableSsmlParsing: true. You can then use SSML tags in your prompts, and the assistant should perform the pauses as expected, not read the tags aloud.
Clarifying question:
Have you already added a pronunciation dictionary to your assistant's voice configuration, or would you like step-by-step help with that process?
Source:
- [Pronunciation dictionaries documentation](https://docs.vapi.ai/assistants/pronunciation-dictionaries)Charlie
11/18/2025, 4:27 PMCharlie
11/19/2025, 6:01 PMVapi Support Bot
11/19/2025, 6:02 PM<flush /> syntax for pauses instead of SSML <break> tags.
Add <flush /> where you want a pause in your prompt, and make sure your assistant's voice config includes "chunkPlan": { "enabled": true }.
Example:
text
Hello, this is your assistant. <flush /> How can I help you today?
This will create a natural pause in the conversation flow.
For more details, see the [flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax).
Source:
- [Flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax)Charlie
11/19/2025, 6:08 PMVapi Support Bot
11/19/2025, 6:09 PM<flush />, your assistant's config must include "chunkPlan": { "enabled": true } in the voice section. You can PATCH your assistant's config like this:
json
{
"voice": {
"chunkPlan": {
"enabled": true
}
}
}
After updating, use <flush /> in your prompts to create natural pauses. For more details, see the [flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax).
Source:
- [Flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax)Vapi Support Bot
11/19/2025, 6:14 PM<break> tags are not supported for pauses in Vapi, even with "enableSsmlParsing": true.
Instead, use Vapi's native <flush /> syntax to create pauses. For example:
text
Hello, how are you today? <flush /> The reason I'm calling you...
Make sure your assistant's config includes "chunkPlan": { "enabled": true } in the voice section for this to work.
See the [flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax) for more details.
Source:
- [Flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax)Vapi Support Bot
11/20/2025, 3:25 PM<flush /> (with the self-closing slash) syntax in your prompt, or just <flush>? The documentation specifies <flush /> for pauses—using <flush> without the slash may not work as expected.
If you are already using <flush /> and still not seeing pauses, please let me know so we can explore other possible causes.
Source:
- [Flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax)Charlie
11/20/2025, 3:29 PMVapi Support Bot
11/20/2025, 3:30 PM<flush /> pauses still aren't working after enabling chunkPlan, the next best step is to contact Vapi support with your assistant's config and a sample prompt.
Here's what to send:
json
{
"voice": {
"provider": "elevenlabs",
"model": "Eleven_turbo_v2_5",
"chunkPlan": { "enabled": true }
},
"prompt": "Hello, how are you today? <flush /> The reason I'm calling you..."
}
Share this with support so they can investigate further.
Source:
- [Flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax)Charlie
11/20/2025, 3:39 PMVapi Support Bot
11/20/2025, 3:41 PM"11labs" (not "elevenlabs" or "11lbs").
Update your assistant's config like this:
json
{
"voice": {
"provider": "11labs",
"model": "eleven_turbo_v2_5",
"chunkPlan": { "enabled": true }
}
}
Use "11labs" exactly as shown above for the provider field.
See the [pronunciation dictionaries documentation](https://docs.vapi.ai/assistants/pronunciation-dictionaries) for reference.
Source:
- [Pronunciation dictionaries documentation](https://docs.vapi.ai/assistants/pronunciation-dictionaries)Charlie
11/20/2025, 9:28 PMVapi Support Bot
11/20/2025, 9:29 PM<flush /> syntax with chunking enabled.
Make sure your config looks like this:
json
{
"voice": {
"provider": "11labs",
"model": "eleven_turbo_v2_5",
"chunkPlan": { "enabled": true }
}
}
Then, add <flush /> in your prompt where you want a pause.
If this still does not work, please contact Vapi support with your config and prompt for further help, as no other method is supported or documented to work for pauses.
Source:
- [Flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax)Charlie
11/20/2025, 9:44 PMVapi Support Bot
11/20/2025, 9:46 PM<flush /> syntax in your prompt, with chunking enabled.
Make sure your config looks like this:
json
{
"voice": {
"provider": "11labs",
"model": "eleven_turbo_v2_5",
"chunkPlan": { "enabled": true }
}
}
Add <flush /> in your prompt where you want a pause.
If this still does not work, please contact Vapi support with your config and prompt, as no other method is supported for pauses.
See the [flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax) for reference.
Source:
- [Flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax)Vapi Support Bot
11/20/2025, 9:51 PM<flush /> with chunking enabled is the only documented way to create pauses in Vapi, and it is still not working for you, could you please confirm:
Are you seeing any error messages or logs in your Vapi dashboard when you use <flush /> in your prompt, or does the assistant simply ignore the pause without any errors?
This detail will help determine if the issue is with configuration, processing, or a possible platform bug.
Source:
- [Flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax)Vapi Support Bot
11/20/2025, 9:57 PM<flush /> with chunking enabled is the only documented way to create pauses in Vapi, and it is still not working for you, the next step is to contact Vapi support with your full assistant config and a sample prompt.
Here’s what to send:
json
{
"voice": {
"provider": "11labs",
"model": "eleven_turbo_v2_5",
"chunkPlan": { "enabled": true }
},
"prompt": "Hello, how are you today? <flush /> The reason I'm calling you..."
}
Share this with support so they can investigate further, as no other method is supported or documented to work for pauses.
See the [flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax) for reference.
Source:
- [Flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax)Charlie
11/21/2025, 7:42 PMVapi Support Bot
11/21/2025, 7:43 PM<flush /> in your prompt with chunking enabled.
Your config should look like this:
json
{
"voice": {
"provider": "11labs",
"model": "eleven_turbo_v2_5",
"chunkPlan": { "enabled": true }
}
}
If <flush /> still does not create a pause, please contact Vapi support with your config and prompt, as no other method is documented to work for pauses.
See the [flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax) for reference.
Source:
- [Flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax)Charlie
11/21/2025, 7:45 PMVapi Support Bot
11/21/2025, 7:46 PM<flush /> in your prompt, with chunking enabled.
Your config should look like this:
json
{
"voice": {
"provider": "11labs",
"model": "eleven_turbo_v2_5",
"chunkPlan": { "enabled": true }
}
}
If <flush /> is still not creating a pause, please contact Vapi support with your config and prompt, as no other method is documented to work for pauses.
See the [flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax) for reference.
Source:
- [Flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax)Chiranjeet Mishra
12/04/2025, 10:04 PM