You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: server/services/tts/rime.mdx
+96-18
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,72 @@
1
1
---
2
2
title: "Rime"
3
-
description: "Text-to-speech service implementation using Rime AI"
3
+
description: "Text-to-speech service implementations using Rime AI"
4
4
---
5
5
6
6
## Overview
7
7
8
-
`RimeHttpTTSService` provides text-to-speech capabilities using Rime AI's TTS service. It supports streaming audio output and various speech customization options.
8
+
Rime AI's text-to-speech capabilities are available through two service implementations:
9
+
10
+
-`RimeTTSService`: WebSocket-based implementation with word-level timing and interruption support
11
+
-`RimeHttpTTSService`: HTTP-based implementation for simpler use cases
9
12
10
13
<Tip>
11
14
You can obtain a Rime API key by signing up at [Rime](https://rime.ai/signup).
12
15
</Tip>
13
16
14
-
## Configuration
17
+
## RimeTTSService (WebSocket Service)
18
+
19
+
Uses Rime's WebSocket JSON API for real-time speech synthesis with word-level timing information.
0 commit comments