We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b722427 commit 3e49696Copy full SHA for 3e49696
src/agents/extensions/memory/advanced_sqlite_session.py
@@ -25,7 +25,7 @@ class AdvancedSQLiteSession(SQLiteSession):
25
ACTIVE = 1 # Message is active and visible in conversation
26
INACTIVE = 0 # Message is soft-deleted (hidden but preserved)
27
28
- def __init__(self, session_id: str, db_path: str | Path = ":memory:", **kwargs):
+ def __init__(self, *, session_id: str, db_path: str | Path = ":memory:", **kwargs):
29
super().__init__(session_id, db_path, **kwargs)
30
self._current_user_turn = 0
31
self._init_structure_tables()
0 commit comments