From 9fdf756375aa75c0bc359362e98f4a9a8a337c6b Mon Sep 17 00:00:00 2001 From: laurent Date: Fri, 5 Dec 2025 10:38:35 +0100 Subject: [PATCH] Fix. --- src/pipecat/services/gradium/tts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/services/gradium/tts.py b/src/pipecat/services/gradium/tts.py index 2f03d6405..8a04f2db6 100644 --- a/src/pipecat/services/gradium/tts.py +++ b/src/pipecat/services/gradium/tts.py @@ -270,7 +270,7 @@ class GradiumTTSService(InterruptibleWordTTSService): elif msg["type"] == "error": await self.push_frame(TTSStoppedFrame()) await self.stop_all_metrics() - await self.push_error(error_msg=f"Error: {msg['message']}")) + await self.push_error(error_msg=f"Error: {msg['message']}") async def push_frame(self, frame: Frame, direction: FrameDirection = FrameDirection.DOWNSTREAM): """Push frame and handle end-of-turn conditions.