Update 28c option to output to log line only by default

This commit is contained in:
Mark Backman
2025-02-08 10:00:45 -05:00
parent dee5448b57
commit 7d05728e2f

View File

@@ -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(
[