From 4b2a18837fe86061943669e631873cf0755efca8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Fri, 7 Jun 2024 13:10:45 -0700 Subject: [PATCH] services(whisper): add text logging --- src/pipecat/services/whisper.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pipecat/services/whisper.py b/src/pipecat/services/whisper.py index 1f3bda5b8..f1b37712e 100644 --- a/src/pipecat/services/whisper.py +++ b/src/pipecat/services/whisper.py @@ -86,4 +86,5 @@ class WhisperSTTService(STTService): if text: await self.stop_ttfb_metrics() + logger.debug(f"Transcription: [{text}]") yield TranscriptionFrame(text, "", int(time.time_ns() / 1000000))