mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
7d56a5a4d6
- Bump core and azure-ai to 1.0.0rc2 - Bump preview packages to 1.0.0b260225 - Update dependencies to >=1.0.0rc2 - Add CHANGELOG entries for changes since rc1 - Update uv.lock Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
7d56a5a4d6
·
2026-02-25 19:37:44 +00:00
History
Get Started with Microsoft Agent Framework Mem0
Please install this package via pip:
pip install agent-framework-mem0 --pre
Memory Context Provider
The Mem0 context provider enables persistent memory capabilities for your agents, allowing them to remember user preferences and conversation context across different sessions and threads.
Basic Usage Example
See the Mem0 basic example which demonstrates:
- Setting up an agent with Mem0 context provider
- Teaching the agent user preferences
- Retrieving information using remembered context across new threads
- Persistent memory
Telemetry
Mem0's telemetry is disabled by default when using this package. If you want to enable telemetry, set the environment variable before importing:
import os
os.environ["MEM0_TELEMETRY"] = "true"
from agent_framework.mem0 import Mem0ContextProvider