Spaces:
Building
Building
Upload llm_manager.py
Browse files- llm/llm_manager.py +1 -1
llm/llm_manager.py
CHANGED
@@ -173,7 +173,7 @@ class LLMManager:
|
|
173 |
return self.llm_sessions[session_id]
|
174 |
|
175 |
# Get session from store
|
176 |
-
from session import session_store
|
177 |
session = session_store.get_session(session_id)
|
178 |
if not session:
|
179 |
log_error(f"❌ Session not found", session_id=session_id)
|
|
|
173 |
return self.llm_sessions[session_id]
|
174 |
|
175 |
# Get session from store
|
176 |
+
from chat_session.session import session_store
|
177 |
session = session_store.get_session(session_id)
|
178 |
if not session:
|
179 |
log_error(f"❌ Session not found", session_id=session_id)
|