From 8cf4267d87ec849ee5df3a4ee8a2f1579e639be5 Mon Sep 17 00:00:00 2001 From: laurent Date: Fri, 5 Dec 2025 15:37:17 +0100 Subject: [PATCH] Switch to a debug. --- src/pipecat/services/gradium/stt.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/pipecat/services/gradium/stt.py b/src/pipecat/services/gradium/stt.py index 028e72fcf..7b8fc2dff 100644 --- a/src/pipecat/services/gradium/stt.py +++ b/src/pipecat/services/gradium/stt.py @@ -22,10 +22,7 @@ from pipecat.frames.frames import ( Frame, StartFrame, TranscriptionFrame, - UserStartedSpeakingFrame, - UserStoppedSpeakingFrame, ) -from pipecat.processors.frame_processor import FrameDirection from pipecat.services.stt_service import WebsocketSTTService from pipecat.transcriptions.language import Language from pipecat.utils.time import time_now_iso8601 @@ -229,8 +226,7 @@ class GradiumSTTService(WebsocketSTTService): async def _handle_end_of_stream(self): """Handle termination message.""" - logger.info("Received end_of_stream message from server") - await self.push_frame(EndFrame()) + logger.debug("Received end_of_stream message from server") async def _handle_text(self, text: str): """Handle transcription results."""