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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
🚀 Performance & Scalability
Lazy Loading Chat Histories: Significantly optimized startup time and RAM consumption. load_bot() no longer eagerly loads all chat histories into RAM. Instead, chat histories are lazy-loaded on-demand from MongoDB via new _ensure_chat_loaded() and _ensure_vision_chat_loaded() methods.
Qdrant Initialization Fix: Fixed a bug in vectorstores.py where passing :memory: to Qdrant would fail due to improper URL parsing. In-memory fallback is now properly handled via the location parameter.