Ericsongyl / mem0

The memory layer for Personalized AI

Home Page:https://app.mem0.ai

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mem0 Logo

Mem0 Slack Mem0 Discord Mem0 Twitter Y Combinator S24 mem0ai npm package mem0ai Python package on PyPi Mem0 newsletter

Mem0: The Memory Layer for Personalized AI

Mem0 provides an intelligent, adaptive memory layer for Large Language Models (LLMs), enhancing personalized AI experiences by retaining and utilizing contextual information across diverse applications. This enhanced memory capability is crucial for applications ranging from customer support and healthcare diagnostics to autonomous systems and personalized content recommendations, allowing AI to remember user preferences, adapt to individual needs, and continuously improve over time.

πŸš€ Quickstart

Installation

The Mem0 package can be installed directly from pip command in the terminal.

pip install mem0ai

Basic Usage (Open Source)

Mem0 supports various LLMs, details of which can be found in our docs, checkout Supported LLMs. By default, Mem0 is equipped with gpt-4o, and to use it, you need to set the keys in the environment variable.

import os
os.environ["OPENAI_API_KEY"] = "sk-xxx"

Now, you can simply initialize the memory.

from mem0 import Memory

m = Memory()

You can perform the following task on the memory.

  1. Add: adds memory
  2. Update: update memory of a given memory_id
  3. Search: fetch memories based on a query
  4. Get: return memories for a certain user/agent/session
  5. History: describes 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 are looking for a hosted version and don't want to setup the infrastucture yourself, checkout Mem0 Platform Docs to get started in minutes.

πŸ”‘ Core Features

  • 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

πŸ“– Documentation

For detailed usage instructions and API reference, visit our documentation at docs.mem0.ai.

πŸ”§ Advanced Usage

For production environments, you can use Qdrant as a vector store:

from mem0 import Memory

config = {
    "vector_store": {
        "provider": "qdrant",
        "config": {
            "host": "localhost",
            "port": 6333,
        }
    },
}

m = Memory.from_config(config)

πŸ—ΊοΈ Roadmap

  • Integration with various LLM providers
  • Support for LLM frameworks
  • Integration with AI Agents frameworks
  • Customizable memory creation/update rules
  • Hosted platform support

πŸ’° Pricing

Choose the Mem0 plan that best fits your needs:

Open Source (Self-hosted)

Perfect for developers and small teams who want full control over their infrastructure.

Pro (Hosted)

Ideal for growing businesses that need a reliable, managed solution with generous free usage. Try the platform here

Enterprise (Hosted)

Designed for large organizations with advanced security, compliance, and scalability needs.

Feature Open Source Pro Enterprise
Hosting Self-hosted Hosted Hosted
API Calls Unlimited 100K free/month Custom limits
Support Community Email Dedicated support
Updates Manual Automatic Automatic
SSO ❌ ❌ βœ…
Audit Logs ❌ ❌ βœ…
Custom Integrations ❌ ❌ βœ…
SLA ❌ ❌ βœ…
Advanced Analytics ❌ Basic Advanced
Multi-region Deployment ❌ ❌ βœ…

Contact us for Enterprise pricing and custom solutions.

Star History

Star History Chart

πŸ™‹β€β™‚οΈ Support

Join our Slack or Discord community for support and discussions. If you have any questions, feel free to reach out to us using one of the following methods:

πŸ“ License

This project is licensed under the Apache 2.0 License - see the LICENSE file for details.

Note

The Mem0 repository now also includes the Embedchain project. We continue to maintain and support Embedchain ❀️. You can find the Embedchain codebase in the embedchain directory.

About

The memory layer for Personalized AI

https://app.mem0.ai

License:Apache License 2.0


Languages

Language:Python 68.4%Language:MDX 20.4%Language:Jupyter Notebook 8.5%Language:JavaScript 2.2%Language:Dockerfile 0.2%Language:Makefile 0.2%Language:Mako 0.0%Language:CSS 0.0%