From 674b8bb0cdd5a887b56deffe0b4da5246405fa6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Wed, 22 May 2024 20:41:34 -0700 Subject: [PATCH] transports(daily): add transcription logging --- src/pipecat/transports/services/daily.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pipecat/transports/services/daily.py b/src/pipecat/transports/services/daily.py index c0948495f..09caaa962 100644 --- a/src/pipecat/transports/services/daily.py +++ b/src/pipecat/transports/services/daily.py @@ -700,6 +700,7 @@ def _on_transcription_message(self, participant_id, message): is_final = message["rawResponse"]["is_final"] if is_final: frame = TranscriptionFrame(text, participant_id, timestamp) + logger.debug(f"Transcription (from: {participant_id}): [{text}]") else: frame = InterimTranscriptionFrame(text, participant_id, timestamp)