You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix tgram import crash: The tgram library calls asyncio.get_event_loop() at import time, which causes a RuntimeError on Python 3.12+ if no loop is running. We made
TelegramGateway
a lazy import so tgram is only loaded when the gateway actually starts inside an asyncio loop.
Fix MarkupError in onboard
Fixed a missing opening Rich markup tag in the pyclaw onboard gateway action prompt that caused a crash.