I'm using this code as my main voice:
let SSMLText = `<speak>
<voice gender="male" variant="3">
<prosody rate="105%">Right away,</prosody>
</voice>
</speak>`
The problem is when you are asking a permission in context like:
return conv.ask(new Permission({
context: SSMLText
permissions:
['DEVICE_PRECISE_LOCATION'],
}));
The result is that is just says literally:
`<speak> <voice gender="male" variant="3"> <prosody rate="105%">Right away, </prosody> </voice> </speak>, I'll just need to get your current location from Google. Is that ok?`
Is it possible to use SSML with permissions library, so I can change the voice? If I don't use SSML it just sounds like someone else is talking which ruins the experience.