• Supported service: tts
  • Key: rime
  • Integrated: No. See BYO Keys for more info.

Service options

voice
string
default: "eva"

Initialize the voice for the TTS service. Select any of the available voices found in the Rime library.

{
  "service_options": {
    "rime": {
      "voice": "rex"
    }
  }
}
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, 22050, 24000, 32000, 44100, 48000.

{
  "service_options": {
    "playht": {
      "sample_rate": 24000
    }
  }
}

Configuration options

model
string
default: "mist"

The model you want your TTS service to use. Select any of the available models found in the Rime library.

{
  "name": "model",
  "value": "mist"
}
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
  }
}