Sajitsu
05/20/2024, 2:21 PM"voice": {
"voiceId": "jennifer",
"provider": "playht",
"emotion": Female Happy,
"styleGuidance": 29
I'm trying to enable female happy emotionVapi Support
05/20/2024, 2:21 PMVapi Support
05/20/2024, 2:21 PMvoiceId and provider, but does not include attributes for directly modifying emotion states in the voice output [(1)]() .
For implementing specific voice tones or emotions, you might typically need to consult the documentation or support for the specific Text-to-Speech (TTS) provider you are using (in this case, PlayHT) to see if they offer these capabilities and how they can be integrated with Vapi.
If PlayHT supports emotional speech synthesis, you would need to set these configurations on their platform or within their specific API parameters, and then integrate these configurations with Vapi as part of the voice setup in your assistant configuration.
json
"voice": {
"provider": "playht",
"voiceId": "jennifer",
"additionalSettings": {
"emotion": "happy",
"styleGuidance": 29
}
}
Note: The additionalSettings field is hypothetical and represents where you might include such settings if supported by PlayHT. You would need to confirm the exact field names and values with PlayHT's API documentation or support team.
For accurate implementation and further assistance, please refer to the specific TTS provider’s documentation or reach out to their support team.Vapi Support
05/20/2024, 2:24 PMVapi Support
05/20/2024, 2:24 PM