• Supported service: tts
  • Key: deepgram_tts
  • Integrated: Yes

Service options

sample_rate
integer
default: "24000"

The audio output sample rate in Hz for the TTS audio.

The sample rate must be one of these values: 8000, 16000, 24000, 32000, 48000.

{
  "service_options": {
    "deepgram": {
      "sample_rate": 24000
    }
  }
}

Configuration options

language
string
required

The voice you want your TTS service to use. Select any language from the available Deepgram TTS voices.

{
  "name": "voice",
  "value": "aura-orion-en"
}
text_filter
object

Control whether the TTS service filters out markdown, code blocks, or tables from its output.

Basic markdown filtering is enabled by default. Enable code and table filtering as needed. Filtering code and tables can help the TTS avoid mistakes.

{
  "name": "text_filter",
  "value": {
    "enable_text_filter": true,
    "filter_code": true,
    "filter_tables": true
  }
}