From 7d05728e2fc7534e87ddf89e6d6ad80fa7040ba3 Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Sat, 8 Feb 2025 10:00:45 -0500 Subject: [PATCH] Update 28c option to output to log line only by default --- examples/foundational/28c-transcription-processor-gemini.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/examples/foundational/28c-transcription-processor-gemini.py b/examples/foundational/28c-transcription-processor-gemini.py index f66afef11..841be0b98 100644 --- a/examples/foundational/28c-transcription-processor-gemini.py +++ b/examples/foundational/28c-transcription-processor-gemini.py @@ -156,8 +156,11 @@ async def main(): # Create transcript processor and handler transcript = TranscriptProcessor() - transcript_handler = TranscriptHandler(output_db="example.db") # Output to log only + # Select a TranscriptHandler output method + # Uncomment out only one of the following lines: + transcript_handler = TranscriptHandler() # Output to log only # transcript_handler = TranscriptHandler(output_file="transcript.txt") # Output to file and log + # transcript_handler = TranscriptHandler(output_db="example.db") # Output to SQLite DB and log pipeline = Pipeline( [