Closed willsmanley closed 3 months ago
I think you can already do this today, the room object is available to access within the context:
async def entrypoint(ctx: JobContext):
@ctx.room.on("data_received")
def on_data_received(...):
pass
all RTC events should be directly accessible within this framework
oh nice! thanks for the tip
The reason this would be really nice is if you want your client application to send other arbitrary data up that the LLM can use (non-audio, non-video).