Skip to content

Commit 3e49696

Browse files
habemaseratch
andauthored
Update src/agents/extensions/memory/advanced_sqlite_session.py
Co-authored-by: Kazuhiro Sera <[email protected]>
1 parent b722427 commit 3e49696

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/agents/extensions/memory/advanced_sqlite_session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class AdvancedSQLiteSession(SQLiteSession):
2525
ACTIVE = 1 # Message is active and visible in conversation
2626
INACTIVE = 0 # Message is soft-deleted (hidden but preserved)
2727

28-
def __init__(self, session_id: str, db_path: str | Path = ":memory:", **kwargs):
28+
def __init__(self, *, session_id: str, db_path: str | Path = ":memory:", **kwargs):
2929
super().__init__(session_id, db_path, **kwargs)
3030
self._current_user_turn = 0
3131
self._init_structure_tables()

0 commit comments

Comments
 (0)