Does VAPI support Amazon Polly as the TTS model?
# support
v
Amazon Polly is not currently listed as a supported TTS provider in Vapi. The official documentation only lists providers such as Vapi, Cartesia, ElevenLabs, Rime AI, PlayHT, LMNT, Deepgram, OpenAI, Azure, Neuphonic, and Smallest AI. If you need Amazon Polly support, you may want to explore Vapi's custom TTS integration options, but there is no official documentation for Polly integration at this time. [See the full provider list here.](https://docs.vapi.ai/providers/voice/vapi-voices) Source: - [Vapi Voices Provider List](https://docs.vapi.ai/providers/voice/vapi-voices)
c
If you would like to implement amazon polly as custom TTS, use this config:
Copy code
"voice": {
    "provider": "custom-voice",
    "server": {
      "url": "https://your-server.com/polly-tts",
      "secret": "your-secret-key"
    },
    "chunkPlan": {
      "enabled": true,
      "minCharacters": 30,
      "punctuationBoundaries": [".", "!", "?", ";"]
    }
  }