library · inferred from evidence
hume-python-sdk
A Python SDK associated with Hume, referenced in the GitHub issue thread.
- 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