Compare commits

...

1 Commits

Author SHA1 Message Date
Mark Backman
4249abc849 Fix missing await in simple chatbot example 2024-11-15 21:24:07 -05:00

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