Mem0(pronounced "mem-zero") enhances AI assistants and agents with an intelligent memory layer, enabling personalized AI interactions. Mem0 remembers user preferences, adapts to individual needs, and continuously improves over time, making it ideal for customer support chatbots, AI assistants, and autonomous systems.
- Multi-Level Memory: User, Session, and AI Agent memory retention
- Adaptive Personalization: Continuous improvement based on interactions
- Developer-Friendly API: Simple integration into various applications
- Cross-Platform Consistency: Uniform behavior across devices
- Managed Service: Hassle-free hosted solution
Mem0 empowers organizations and individuals to enhance:
- AI Assistants and agents: Seamless conversations with a touch of déjà vu
- Personalized Learning: Tailored content recommendations and progress tracking
- Customer Support: Context-aware assistance with user preference memory
- Healthcare: Patient history and treatment plan management
- Virtual Companions: Deeper user relationships through conversation memory
- Productivity: Streamlined workflows based on user habits and task history
- Gaming: Adaptive environments reflecting player choices and progress
The easiest way to set up Mem0 is through the managed Mem0 Platform. This hosted solution offers automatic updates, advanced analytics, and dedicated support. Sign up to get started.
If you prefer to self-host, use the open-source Mem0 package. Follow the installation instructions to get started.
Install the Mem0 package via pip:
pip install mem0ai
Alternatively, you can use Mem0 with one click on the hosted platform here.
Mem0 requires an LLM to function, with gpt-4o
from OpenAI as the default. However, it supports a variety of LLMs; for details, refer to our Supported LLMs documentation.
First step is to instantiate the memory:
from mem0 import Memory
m = Memory()
How to set OPENAI_API_KEY
import os
os.environ["OPENAI_API_KEY"] = "sk-xxx"
You can perform the following task on the memory:
- Add: Store a memory from any unstructured text
- Update: Update memory of a given memory_id
- Search: Fetch memories based on a query
- Get: Return memories for a certain user/agent/session
- History: Describe how a memory has changed over time for a specific memory ID
# 1. Add: Store a memory from any unstructured text
result = m.add("I am working on improving my tennis skills. Suggest some online courses.", user_id="alice", metadata={"category": "hobbies"})
# Created memory --> 'Improving her tennis skills.' and 'Looking for online suggestions.'
# 2. Update: update the memory
result = m.update(memory_id=<memory_id_1>, data="Likes to play tennis on weekends")
# Updated memory --> 'Likes to play tennis on weekends.' and 'Looking for online suggestions.'
# 3. Search: search related memories
related_memories = m.search(query="What are Alice's hobbies?", user_id="alice")
# Retrieved memory --> 'Likes to play tennis on weekends'
# 4. Get all memories
all_memories = m.get_all()
memory_id = all_memories[0]["id"] # get a memory_id
# All memory items --> 'Likes to play tennis on weekends.' and 'Looking for online suggestions.'
# 5. Get memory history for a particular memory_id
history = m.history(memory_id=<memory_id_1>)
# Logs corresponding to memory_id_1 --> {'prev_value': 'Working on improving tennis skills and interested in online courses for tennis.', 'new_value': 'Likes to play tennis on weekends' }
Tip
If you prefer a hosted version without the need to set up infrastructure yourself, check out the Mem0 Platform to get started in minutes.
For detailed usage instructions and API reference, visit our documentation at docs.mem0.ai. Here, you can find more information on both the open-source version and the hosted Mem0 Platform.
Join our community for support and discussions. If you have any questions, feel free to reach out to us using one of the following methods:
Join our Discord community to learn about memory management for AI agents and LLMs, and connect with Mem0 users and contributors. Share your ideas, questions, or feedback in our GitHub Issues.
We value and appreciate the contributions of our community. Special thanks to our contributors for helping us improve Mem0.
This project is licensed under the Apache 2.0 License - see the LICENSE file for details.