From 8467aa1ed33eb35b456ec872c3b6a581744d5322 Mon Sep 17 00:00:00 2001 From: Matt Kim Date: Wed, 30 Apr 2025 14:20:13 -0700 Subject: [PATCH] [Rime] - Update url for Websockets API Rime has migrated their Websockets api to the base url `user.rime.ai` along with all other tts endpoints. See the [docs](https://docs.rime.ai/api-reference/endpoint/websockets) `users-ws.rime.ai` is deprecated and will not reflect upgrades to the rime ws api. --- src/pipecat/services/rime/tts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/services/rime/tts.py b/src/pipecat/services/rime/tts.py index 83fd3fa62..e6d1d400a 100644 --- a/src/pipecat/services/rime/tts.py +++ b/src/pipecat/services/rime/tts.py @@ -74,7 +74,7 @@ class RimeTTSService(AudioContextWordTTSService): *, api_key: str, voice_id: str, - url: str = "wss://users-ws.rime.ai/ws2", + url: str = "wss://users.rime.ai/ws2", model: str = "mistv2", sample_rate: Optional[int] = None, params: InputParams = InputParams(),