From 16c20f3a997b48c98ed83570543f2071412f08c4 Mon Sep 17 00:00:00 2001 From: padillamt Date: Thu, 24 Jul 2025 21:15:34 -0700 Subject: [PATCH] inworld: removal of unnecessary default assignment since already done Co-authored-by: Mark Backman --- src/pipecat/services/inworld/tts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/services/inworld/tts.py b/src/pipecat/services/inworld/tts.py index b89b21d4a..ce7e7592d 100644 --- a/src/pipecat/services/inworld/tts.py +++ b/src/pipecat/services/inworld/tts.py @@ -228,7 +228,7 @@ class InworldTTSService(TTSService): # Note: Language is automatically inferred from text by Inworld's models self._settings = { "voiceId": params.voice_id, # Voice selection from params - "modelId": params.model or "inworld-tts-1", # TTS model selection from params + "modelId": params.model, # TTS model selection from params "audio_config": { # Audio format configuration "audio_encoding": encoding, # Format: LINEAR16, MP3, etc. "sample_rate_hertz": 0, # Will be set in start() from parent service