π Christine
04/01/2025, 2:41 PMVapi Support Bot
04/01/2025, 2:43 PMnumberToDigitsCutoff
setting in your assistant's voice configuration:
json
{
voice: {
chunkPlan: {
formatPlan: {
numberToDigitsCutoff: 100000 // Set this higher than your largest expected number
}
}
}
}
This setting determines when numbers should be spoken as individual digits versus words [according to Vapi documentation](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1342349738032500736).
### 2. Enable SSML Parsing
SSML (Speech Synthesis Markup Language) gives you more control over pronunciation:
1. Visit the [Update Assistant API](https://docs.vapi.ai/api-reference/assistants/update-assistant)
2. Select your current voice provider (e.g., 11labs)
3. Enable the SSML parsing option (enableSsmlParsing: true
)
4. Save the changes
With SSML enabled, you can use tags to control speech rate and pronunciation [as mentioned in Vapi's documentation](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1338644573207007304).
### 3. Try Different Voice Providers
Different TTS providers may handle number pronunciation differently. Vapi supports several providers including PlayHT, ElevenLabs, Azure, OpenAI, and others. You might want to experiment with different providers to find one that handles number pronunciation better [according to Vapi's multilingual documentation](https://docs.vapi.ai/customization/multilingual).
### 4. Use Phonetic SpellingVapi Support Bot
04/01/2025, 2:43 PMrate
, speed
, or tempo
in your voice synthesis settings and set them to a lower value to slow down speech [according to Vapi's support documentation](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336023375721791549).
Would you like me to provide more details on any of these approaches or help with implementing a specific solution?
Sources:
- [Vapi documentation on numberToDigitsCutoff](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1342349738032500736)
- [Vapi documentation on SSML parsing](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1338644573207007304)
- [Vapi documentation on multilingual support](https://docs.vapi.ai/customization/multilingual)
- [Vapi documentation on phonetic spelling](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1332426179285880863)
- [Vapi documentation on speech rate settings](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336023375721791549)Randy
04/01/2025, 2:47 PMKyle Brunker
04/01/2025, 8:32 PM