Muhammad Fathurrahman
Results
2
comments of
Muhammad Fathurrahman
i thought before_llm_cb is not async function
Hey @ChrisFeldmeier, I have a solution that you can try. ```py class EventUIHandler: def __init__(self, room: Room): self._listen_event = False room.on("data_received", self.on_data_received) def on_data_received(self,data: DataPacket): topic = "ui:button_commit_voice" if data.topic...