TTS Alternative Providers
# support
u
Was wondering if it is possible to connect a TTS provider thats not currently out of the box supported by VAPI. Looking at Minimaxi as I experimented and thought it was pretty good for my use case.
v
Currently, Vapi does not provide a documented way to directly integrate a custom TTS provider (like Minimaxi) if it is not already supported out of the box. The platform supports bringing your own models for transcription and LLMs, but there is no mention of a similar mechanism for TTS. If you need this feature, I recommend reaching out to [Vapi support](https://docs.vapi.ai/support) to discuss your use case or request this as a feature. Sources: - [Provider Keys – Vapi Documentation](https://docs.vapi.ai/customization/provider-keys) - [Custom Transcriber – Vapi Documentation](https://docs.vapi.ai/customization/custom-transcriber) - [FAQ – Vapi Documentation](https://docs.vapi.ai/faq)
u
Would like to request this as a feature
k
Yes, you can integrate a custom TTS provider like Minimaxi with Vapi by setting up your own TTS server and configuring your assistant to use it as a custom voice provider.
u
u
oh alright thanks!
p
Glad the issue was resolved. Please reach out to us if you have any other questions regarding this issue
u
Hey sorry so when I make the API call, still not sure where to pass the body? shows the request example bht where do i place the body?
p
Your request will look something like this:
Copy code
curl -X POST https://api.vapi.ai/assistant \
     -H "Authorization: Bearer " \
     -H "Content-Type: application/json" \
     -d '{
  "voice": {
    "provider": "custom-voice",
    "server": {}
  }
}'
You can also review this reference guide and build a template to gain a better understanding of the request
u
as in the body for the server under voice? ie. the servier is an api and i need pass a body
p
Hey Timmy, you can check out this guide on how to set up custom text-to-speech with VAPI, and let me know your feedback on this document. After Your feedback, I'll deploy this document onto VAPI's official docs.
u
Thanks will try it out
3 Views