library · inferred from evidence
asyncio
A library used in the app for asynchronous task management (e.g., asyncio.gather with create_task).
- RuntimeError: asyncio.run() cannot be called from a running event loop in Jupyter
Jupyter owns the event loop already, so `asyncio.run(main())` will always fail there with this error. Replace it with `loop = asyncio.get_event_loop()` and `loop.create_task(main())` to schedule your coroutine on Jupyter's loop. The Hume ma