library · inferred from evidence
loop.create_task
A method of the event loop used to schedule a coroutine for execution.
- RuntimeError: asyncio.run() cannot be called from a running event loop in Jupyter
Running the Hume streaming example in a Jupyter notebook failed with `RuntimeError: asyncio.run() cannot be called from a running event loop` because Jupyter already runs its own event loop. Maintainer gregorybchris explained the fix: merge