Read digits more slowly
How do I make the Vapi voice read digits and spell names more slowly? Right now it reads at the same pace as the speaking voice, which is often too fast.
<prosody> tags and adjust the rate attribute to slow down the speech. Here's an example of how you might do that:<prosody> tag to control the rate of speech for specific parts of your text. For example, to slow down the reading of digits or spelled-out names, you could wrap those parts of your text in <prosody rate="slow">...</prosody> tags.<break time="500ms"/> tag to add a half-second pause.<prosody> tag to specifically slow down the rate of speech for digits and names. For example:<prosody> tag is used to adjust the rate of speech for the enclosed text. You can replace "slow" with a specific percentage to fine-tune the speed to your liking, such as rate="50%" for half the normal speed.<prosody><prosody><prosody><prosody>rate<prosody rate="slow">...</prosody><break time="500ms"/>rate="50%"<prosody rate="slow">123456789</prosody><prosody rate="slow">John Doe</prosody><speak>
This is a normal speaking rate, but the following digits will be slower:
<prosody rate="slow">1 2 3 4 5 6 7 8 9 0</prosody>.
And here is a name spelled out slowly:
<prosody rate="slow">J O H N</prosody>.
</speak><prosody rate="slow">12345</prosody>
<prosody rate="slow">John Doe</prosody><speak>
This is a normal speaking rate, but when it comes to numbers like
<prosody rate="slow">123456789</prosody>,
and names like
<prosody rate="slow">John Doe</prosody>,
I will speak more slowly.
</speak>