From 164f06415cb6efb6fd591cb31814dbf13abfa60b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Mon, 14 Oct 2024 10:41:38 -0700 Subject: [PATCH] servcies(cartesia): no need to send LLMFullResponseEndFrame Interruptions are already handled by context aggregators. --- src/pipecat/services/cartesia.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pipecat/services/cartesia.py b/src/pipecat/services/cartesia.py index c0e4a89a2..21074bbcc 100644 --- a/src/pipecat/services/cartesia.py +++ b/src/pipecat/services/cartesia.py @@ -210,7 +210,6 @@ class CartesiaTTSService(WordTTSService): async def _handle_interruption(self, frame: StartInterruptionFrame, direction: FrameDirection): await super()._handle_interruption(frame, direction) await self.stop_all_metrics() - await self.push_frame(LLMFullResponseEndFrame()) self._context_id = None async def flush_audio(self):