Hindi and french language
# support
s
I want hindi language to speak for my AI but i am not able to find any, please help me with that with privider, Model, and voice name
v
Hi Steve, To set up your AI to speak Hindi, you can choose from the supported voice providers and models. Here’s how you can configure it: 1. **Provider**: Use Azure for high-quality Hindi voices. 2. **Configuration Example**:
Copy code
json
   {
     "voice": {
       "provider": "azure",
       "voiceId": "hi-IN-SwaraNeural" // example voice ID for Hindi
     }
   }
For French, you can also use Azure. Here’s an equivalent setup: 3. **Configuration Example for French**:
Copy code
json
   {
     "voice": {
       "provider": "azure",
       "voiceId": "fr-FR-AlainNeural" // example voice ID for French
     }
   }
You can explore these configurations in detail by reviewing our [Multilingual documentation](https://docs.vapi.ai/customization/multilingual).
2 Views