Voice Agent doesn't speak numbers
I'm setting up a voice agent and when I test, it skips over any numbers. Times, pricing, etc. How can this be fixed?
</> icon (toggle to SSML view).<say-as> tag:interpret-as="digits" – reads each digit (“five-zero”). interpret-as="cardinal" – reads the whole number (“fifty”). interpret-as="currency", "time", "date", etc. – for prices, times, dates.price_str = price + '') or just reference it inside the SSML tag: <say-as interpret-as="digits">{{price}}</say-as></><say-as>interpret-as="digits"interpret-as="cardinal"interpret-as="currency", "time", "date", etc.price_str = price + ''<say-as interpret-as="digits">{{price}}</say-as><speak>
The total is <say-as interpret-as="currency">$50.00</say-as>.
Your meeting is at <say-as interpret-as="time">9:30 AM</say-as>.
</speak>