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
2 changes: 1 addition & 1 deletion src/chatbot/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class ChatState:
async def bot(state: ChatState) -> dict[str, list[Messages]]:
"""Prompt the bot to resopnd to the user, incorporating memories (if provided)."""
configurable = ChatConfigurable.from_context()
namespace = (configurable.user_id,)
namespace = ("memories", configurable.user_id,)
store = get_store()
# This lists ALL user memories in the provided namespace (up to the `limit`)
# you can also filter by content.
Expand Down