Replies: 1 comment
-
|
Hey @xjtai , Root cause: This is an async event loop conflict — the logging_worker is trying to fire an async callback (async_success_handler) from a sync context. On Windows this is worse because Uvicorn defaults to asyncio event loop instead of uvloop, and nest_asyncio isn't applied, causing the coroutine to be created but never scheduled. Fix — three steps:
if sys.platform == "win32":
Guided Learning sessions are stored at: data/user/guide/session_{session_id}.json 👍 If this helped you, please mark it as the answer — it helps others in the community who run into the same issue find the solution faster! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Guided Learning is unresponsive after local deployment


Beta Was this translation helpful? Give feedback.
All reactions