5a1d96df67
* Separate mem0 storage and search scopes * Apply suggestions from code review Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1.2 KiB
1.2 KiB
Mem0 Package (agent-framework-mem0)
Integration with Mem0 for agent memory management.
Main Classes
Mem0ContextProvider- Context provider that integrates Mem0 memory into agents
Usage
from agent_framework.mem0 import Mem0ContextProvider
provider = Mem0ContextProvider(
api_key="your-key",
# Storage scope: memories are written with this user_id.
user_id="user-id",
# Retrieval scope: must be set explicitly, it never inherits the storage scope.
search_user_id="user-id",
)
Memory Scoping
application_id/agent_id/user_idare the storage scope stamped on written memories.search_application_id/search_agent_id/search_user_idare the retrieval scope.- Retrieval scope never defaults to the storage scope. With no
search_*value set,before_runretrieves nothing and logs a warning. This prevents memories written under a sharedagent_idfrom being retrieved for every user of that agent.
Import Path
from agent_framework.mem0 import Mem0ContextProvider
# or directly:
from agent_framework_mem0 import Mem0ContextProvider
Notes
Mem0 telemetry is disabled by default. Set MEM0_TELEMETRY=true to enable.