Fix missing await in simple chatbot example

This commit is contained in:
Mark Backman
2024-11-15 21:24:07 -05:00
parent d0bca67666
commit 4249abc849

View File

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