From 4249abc8498db22437d5d7e384f1b7e50783f682 Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Fri, 15 Nov 2024 21:24:07 -0500 Subject: [PATCH] Fix missing await in simple chatbot example --- examples/simple-chatbot/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/simple-chatbot/bot.py b/examples/simple-chatbot/bot.py index f0396b9ae..2a96fb08e 100644 --- a/examples/simple-chatbot/bot.py +++ b/examples/simple-chatbot/bot.py @@ -162,7 +162,7 @@ async def main(): @transport.event_handler("on_first_participant_joined") async def on_first_participant_joined(transport, participant): - transport.capture_participant_transcription(participant["id"]) + await transport.capture_participant_transcription(participant["id"]) await task.queue_frames([LLMMessagesFrame(messages)]) runner = PipelineRunner()