From da8d3a2d8074b394a881a135d33e41284175f1b0 Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Wed, 29 Apr 2026 11:05:12 -0400 Subject: [PATCH] feat(soniox): update default TTS model to tts-rt-v1 Promotes the Soniox TTS default model from `tts-rt-v1-preview` to the generally available `tts-rt-v1`. --- src/pipecat/services/soniox/tts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/services/soniox/tts.py b/src/pipecat/services/soniox/tts.py index 45c88156e..5bc7d33da 100644 --- a/src/pipecat/services/soniox/tts.py +++ b/src/pipecat/services/soniox/tts.py @@ -184,7 +184,7 @@ class SonioxTTSService(WebsocketTTSService): """ # Initialize default_settings default_settings = self.Settings( - model="tts-rt-v1-preview", + model="tts-rt-v1", voice="Adrian", language=Language.EN, )