Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/pyob/prompts_and_memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,7 @@ def _get_rich_context(self, query_text: str = "") -> str:
return context

def update_memory(self) -> None:
# type: ignore
session_context: list[str] = getattr(self, "session_context", [])
session_context: list[str] = getattr(self, "session_context", []) # type: ignore
if not session_context:
return
logger.info("\nPHASE 5: Updating MEMORY.md with session context...")
Expand Down
Loading