{"repo":"mem0ai/mem0","free":true,"listed":false,"github":"https://github.com/mem0ai/mem0","clone":"git clone https://github.com/mem0ai/mem0.git","description":"Universal memory layer for AI Agents","language":"Python","stars":63378,"topics":["agents","ai","ai-agents","application","chatbots","chatgpt","genai","llm","long-term-memory","memory","memory-management","python","rag","state-management"],"license":"Apache-2.0","category":"llm_memory_service","readme_excerpt":"<p align=\"center\">\n  <a href=\"https://github.com/mem0ai/mem0\">\n    <img src=\"docs/images/banner-sm.png\" width=\"800px\" alt=\"Mem0 - The Memory Layer for Personalized AI\">\n  </a>\n</p>\n<p align=\"center\" style=\"display: flex; justify-content: center; gap: 20px; align-items: center;\">\n  <a href=\"https://trendshift.io/repositories/11194\" target=\"blank\">\n    <img src=\"https://trendshift.io/api/badge/repositories/11194\" alt=\"mem0ai%2Fmem0 | Trendshift\" width=\"250\" height=\"55\"/>\n  </a>\n</p>\n\n<p align=\"center\">\n  <a href=\"https://mem0.ai\">Learn more</a>\n  ·\n  <a href=\"https://mem0.dev/DiG\">Join Discord</a>\n  ·\n  <a href=\"https://mem0.dev/demo\">Demo</a>\n</p>\n\n<p align=\"center\">\n  <a href=\"https://mem0.dev/DiG\">\n    <img src=\"https://img.shields.io/badge/Discord-%235865F2.svg?&logo=discord&logoColor=white\" alt=\"Mem0 Discord\">\n  </a>\n  <a href=\"https://pepy.tech/project/mem0ai\">\n    <img src=\"https://img.shields.io/pypi/dm/mem0ai\" alt=\"Mem0 PyPI - Downloads\">\n  </a>\n  <a href=\"https://github.com/mem0ai/mem0\">\n    <img src=\"https://img.shields.io/github/commit-activity/m/mem0ai/mem0?style=flat-square\" alt=\"GitHub commit activity\">\n  </a>\n  <a href=\"https://pypi.org/project/mem0ai\" target=\"blank\">\n    <img src=\"https://img.shields.io/pypi/v/mem0ai?color=%2334D058&label=pypi%20package\" alt=\"Package version\">\n  </a>\n  <a href=\"https://www.npmjs.com/package/mem0ai\" target=\"blank\">\n    <img src=\"https://img.shields.io/npm/v/mem0ai\" alt=\"Npm package\">\n  </a>\n  <a href=\"https://www.ycombinator.com/companies/mem0\">\n    <img src=\"https://img.shields.io/badge/Y%20Combinator-S24-orange?style=flat-square\" alt=\"Y Combinator S24\">\n  </a>\n</p>\n\n<p align=\"center\">\n  <a href=\"https://mem0.ai/research\"><strong>📄 Benchmarking Mem0's token-efficient memory algorithm →</strong></a>\n</p>\n\n## New Memory Algorithm (April 2026)\n\n| Benchmark | Old | New  | Tokens  | Latency p50  |\n| --- | --- | --- | --- | --- |\n| **LoCoMo** | 71.4 | **92.5** | 7.0K  | 0.88s  |\n| **LongMemEval** | 67.8 | **94.4** | 6.8K  | 1.09s  |\n| **BEAM (1M)** | — | **64.1** | 6.7K  | 1.00s  |\n| **BEAM (10M)** | — | **48.6** | 6.9K  | 1.05s  |\n\nAll benchmarks run on the same production-representative model stack. Single-pass retrieval (one call, no agentic loops) at a top_200 retrieval budget. Scores reflect Mem0's managed platform, which includes proprietary optimizations not available in the open-source SDK; open-source users should expect directionally similar gains but not identical numbers.\n\n**What changed:**\n- **Single-pass ADD-only extraction** -- one LLM call, no UPDATE/DELETE. Memories accumulate; nothing is overwritten.\n- **Agent-generated facts are first-class** -- when an agent confirms an action, that information is now stored with equal weight.\n- **Entity linking** -- entities are extracted, embedded, and linked across memories for retrieval boosting.\n- **Multi-signal retrieval** -- semantic, BM25 keyword, and entity matching scored in parallel and fused.\n- **Temporal Reasoning** -- time-aware retrieval that ranks the right dated instance for queries about current state, past events, and upcoming plans.\n\nSee the [migration guide](https://docs.mem0.ai/migration/oss-v2-to-v3) for upgrade instructions. The [evaluation framework](https://github.com/mem0ai/memory-benchmarks) is open-sourced so anyone can reproduce the numbers.\n\n## Research Highlights\n- **92.5 on LoCoMo** -- +21 points over the previous algorithm\n- **94.4 on LongMemEval** -- +27 points, with 98.2 on assistant memory recall\n- **64.1 on BEAM (1M)** -- production-scale memory evaluation at 1M tokens\n- [Read the full paper](https://mem0.ai/research)\n\n# Introduction\n\n[Mem0](https://mem0.ai) (\"mem-zero\") enhances AI assistants and agents with an intelligent memory layer, enabling personalized AI interactions. It remembers user preferences, adapts to individual needs, and continuously learns over time—ideal for customer support chatbots, AI assistants, and autonomous systems.\n\n### Key Features & Use Cases\n\n**Core Capabilities:**\n- **Multi-Level Memory**: Seamlessly retains User, Session, and Agent state with adaptive personalization\n- **Developer-Friendly**: Intuitive API, cross-platform SDKs, and a fully managed service option\n\n**Applications:**\n- **AI Assistants**: Consistent, context-rich conversations\n- **Customer Support**: Recall past tickets and user history for tailored help\n- **Healthcare**: Track patient preferences and history for personalized care\n- **Productivity & Gaming**: Adaptive workflows and environments based on user behavior\n\n## 🚀 Quickstart Guide <a name=\"quickstart\"></a>\n\n### Sign up as an agent\n\nAI agents can mint a working Mem0 API key in under five seconds — no email, no dashboard, no OTP. Four commands end-to-end:\n\n```bash\n# 1. Install\nnpm install -g @mem0/cli      # or: pip install mem0-cli\n\n# 2. Sign up as an agent (replace `claude-code` with your name)\nmem0 init --agent --agent-caller claude-code\n\n# 3. Add a memory\nmem0 add \"I am using mem0\"\n\n# 4. Search\nmem0 search \"am I using mem0\"\n```\n\nThe human owner can claim the account later with `mem0 init --email <their-email>` — same key, memories preserved. Full guide: [Sign up as an agent](https://docs.mem0.ai/platform/agent-signup).\n\n| | Library | Self-Hosted Server | Cloud Platform |\n|---|---------|-------------------|----------------|\n| **Best for** | Testing, prototyping | Teams running on their own infrastructure | Zero-ops production use |\n| **Setup** | `pip install mem0ai` | `docker compose up` | Sign up at [app.mem0.ai](https://app.mem0.ai?utm_source=oss&utm_medium=readme) |\n| **Dashboard** | -- | [Yes](https://docs.mem0.ai/open-source/setup) | Yes |\n| **Auth & API Keys** | -- | Yes | Yes |\n| **Advanced Features** | -- | Teasers | All included |\n\nJust testing? Use the library. Building for a team? Self-hosted. Want zero ops? Cloud.\n\n### Library (pip / npm)\n\n```bash\npip install mem0ai\n```\n\nFor enhanced hybrid search with BM25 keyword matching and entity extraction, install with NLP support:\n\n```bash\npip install mem0ai[nlp]\npython -m spacy download en_core_web_sm\n```\n\nInstall sdk via npm:\n\n```bash\nnpm install mem0ai\n```\n\n### Self-Hosted Server\n\n> **Note:** Self-hosted auth is on by default. Upgrading from a pre-auth build? Set `ADMIN_API_KEY`, register an admin through the wizard, or `AUTH_DISABLED=true` for local dev only. See [upgrade notes](https://docs.mem0.ai/open-source/setup#upgrade-notes).\n\n```bash\n# Recommended: one command — start the stack, create an admin, issue the first API key.\ncd server && make bootstrap\n\n# Manual: start the stack and finish setup via the browser wizard.\ncd server && docker compose up -d    # http://localhost:3000\n```\n\nSee the [self-hosted docs](https://docs.mem0.ai/open-source/overview) for configuration.\n\n### Cloud Platform\n\n1. Sign up on [Mem0 Platform](https://app.mem0.ai?utm_source=oss&utm_medium=readme)\n2. Embed the memory layer via SDK or API keys\n3. Using hosted Qdrant vectors? See the [Platform migration guide](https://docs.mem0.ai/migration/oss-to-platform) to import them into Mem0 Platform.\n\n### CLI\n\nManage memories from your terminal:\n\n```bash\nnpm install -g @mem0/cli   # or: pip install mem0-cli\n\nmem0 init\nmem0 add \"Prefers dark mode and vim keybindings\" --user-id alice\nmem0 search \"What does Alice prefer?\" --user-id alice\n```\n\nSee the [CLI documentation](https://docs.mem0.ai/platform/cli) for the full command reference.\n\n### Agent Skills\n\nTeach your AI coding assistant (Claude Code, Codex, Cursor, Windsurf, OpenCode, OpenClaw, and any tool that supports the skills standard) how to build with Mem0. Two categories:\n\n**Reference skills — always on** (SDK knowledge loaded into the assistant's context):\n\n```bash\nnpx skills add https://github.com/mem0ai/mem0 --skill mem0\nnpx skills add https://github.com/mem0ai/mem0 --skill mem0-cli\nnpx skills add https://github.com/mem0ai/mem0 --skill mem0-vercel-ai-sdk\n```\n\n**Pipeline skills — run on demand** (execute an end-to-end workflow in an existing repo):\n\n```bash\nnpx skills add https://github.com/mem0ai/mem0 --skill mem0-integrate\nnpx skills add https://github.com/mem0ai/mem0 --skill mem0-test-integration\nnpx skills add https://github.com/mem0ai/mem0 --skill mem0-oss-to-platform\n```\n\nUse `/mem0-integrate` to wire Mem0 into an existing repo via a test-first pipeline, then `/mem0-test-integration` to verify. Use `/mem0-oss-to-platform` to migrate an existing project from Mem0 OSS to the hosted Platform SDK. See the [skills catalog](./skills/) or [Vibecoding with Mem0](https://docs.mem0.ai/vibecoding) for the full picture.\n\n### Basic Usage\n\nMem0 requires an LLM to function, with `gpt-5-mini` from OpenAI as the default. However, it supports a variety of LLMs; for details, refer to our [Supported LLMs documentation](https://docs.mem0.ai/components/llms/overview).\n\nMem0 uses `text-embedding-3-small` from OpenAI as the default embedding model. For best results with hybrid search (semantic + keyword + entity boosting), we recommend using at least [Qwen 600M](https://huggingface.co/Alibaba-NLP/gte-Qwen2-1.5B-instruct) or a comparable embedding model. See [Supported Embeddings](https://docs.mem0.ai/components/embedders/overview) for configuration details.\n\nFirst step is to instantiate the memory:\n\n```python\nfrom openai import OpenAI\nfrom mem0 import Memory\n\nopenai_client = OpenAI()\nmemory = Memory()\n\ndef chat_with_memories(message: str, user_id: str = \"default_user\") -> str:\n    # Retrieve relevant memories\n    relevant_memories = memory.search(query=message, filters={\"user_id\": user_id}, top_k=3)\n    memories_str = \"\\n\".join(f\"- {entry['memory']}\" for entry in relevant_memories[\"results\"])\n\n    # Generate Assistant response\n    system_prompt = f\"You are a helpful AI. Answer the question based on query and memories.\\nUser Memories:\\n{memories_str}\"\n    messages = [{\"role\": \"system\", \"content\": system_prompt}, {\"role\": \"user\", \"content\": message}]\n    response = openai_client.chat.completions.create(model=\"gpt-5-mini\", messages=messages)\n    assistant_respon","default_branch":"main","files":1711,"tree":[".agents/plugins/marketplace.json",".claude-plugin/marketplace.json",".codex-plugin/marketplace.json",".cursor-plugin/marketplace.json",".github/AGENTS.md",".github/CLAUDE.md",".github/ISSUE_TEMPLATE/bug_report.yml",".github/ISSUE_TEMPLATE/config.yml",".github/ISSUE_TEMPLATE/documentation_issue.yml",".github/ISSUE_TEMPLATE/feature_request.yml",".github/PULL_REQUEST_TEMPLATE.md",".github/VOUCHED.td",".github/advanced-issue-labeler.yml",".github/component-keywords.json",".github/labeler.yml",".github/scripts/infer-component-labels.js",".github/scripts/infer-component-labels.test.js",".github/workflows/cd.yml",".github/workflows/ci-gate.yml",".github/workflows/ci.yml",".github/workflows/cli-node-cd.yml",".github/workflows/cli-node-ci.yml",".github/workflows/cli-python-cd.yml",".github/workflows/cli-python-ci.yml",".github/workflows/docs-llms-txt-check.yml",".github/workflows/issue-labeler.yml",".github/workflows/mem0-plugin-checks.yml",".github/workflows/n8n-nodes-mem0-cd.yml",".github/workflows/n8n-nodes-mem0-checks.yml",".github/workflows/openclaw-cd.yml",".github/workflows/openclaw-checks.yml",".github/workflows/opencode-plugin-cd.yml",".github/workflows/opencode-plugin-checks.yml",".github/workflows/pi-agent-plugin-cd.yml",".github/workflows/pi-agent-plugin-checks.yml",".github/workflows/pr-gate.yml",".github/workflows/pr-labeler.yml",".github/workflows/release.yml",".github/workflows/stale.yml",".github/workflows/ts-sdk-cd.yml",".github/workflows/ts-sdk-ci.yml",".github/workflows/vercel-ai-cd.yml",".github/workflows/vouch-check-pr.yml",".github/workflows/vouch-manage-by-issue.yml",".github/workflows/zapier-mem0-cd.yml",".github/workflows/zapier-mem0-checks.yml",".gitignore",".gitmodules",".kimi-plugin/marketplace.json",".pre-commit-config.yaml","AGENTS.md","CLAUDE.md","CODE_OF_CONDUCT.md","CONTRIBUTING.md","LICENSE","LLM.md","Makefile","README.md","SECURITY.md","cli/CLI_SPECIFICATION.md","cli/README.md","cli/cli-spec.json","cli/node/AGENTS.md","cli/node/CLAUDE.md","cli/node/README.md","cli/node/development.md","cli/node/package.json","cli/node/pnpm-lock.yaml","cli/node/pnpm-workspace.yaml","cli/node/src/agent-detect.ts","cli/node/src/backend/base.ts","cli/node/src/backend/index.ts","cli/node/src/backend/platform.ts","cli/node/src/branding.ts","cli/node/src/commands/agent-mode.ts","cli/node/src/commands/agent-rush.ts","cli/node/src/commands/config.ts","cli/node/src/commands/entities.ts","cli/node/src/commands/events.ts","cli/node/src/commands/identify.ts","cli/node/src/commands/init.ts","cli/node/src/commands/memory.ts","cli/node/src/commands/utils.ts","cli/node/src/commands/whoami.ts","cli/node/src/config.ts","cli/node/src/globals.d.ts","cli/node/src/help.ts","cli/node/src/index.ts","cli/node/src/output.ts","cli/node/src/plugin-sync.ts","cli/node/src/state.ts","cli/node/src/telemetry.ts","cli/node/src/version.ts","cli/node/telemetry-sender.cjs","cli/node/tests/agent-mode.test.ts","cli/node/tests/branding.test.ts","cli/node/tests/cli-integration.test.ts","cli/node/tests/commands.test.ts","cli/node/tests/config.test.ts","cli/node/tests/init-internals.test.ts","cli/node/tests/option-parity.test.ts","cli/node/tests/output.test.ts","cli/node/tests/platform-backend.test.ts","cli/node/tests/setup.ts","cli/node/tests/telemetry.test.ts","cli/node/tsconfig.json","cli/node/tsup.config.ts","cli/node/vitest.config.ts","cli/python/AGENTS.md","cli/python/CLAUDE.md","cli/python/Makefile","cli/python/README.md","cli/python/development.md","cli/python/pyproject.toml","cli/python/src/mem0_cli/__init__.py","cli/python/src/mem0_cli/__main__.py","cli/python/src/mem0_cli/agent_detect.py","cli/python/src/mem0_cli/app.py","cli/python/src/mem0_cli/backend/__init__.py","cli/python/src/mem0_cli/backend/base.py","cli/python/src/mem0_cli/backend/platform.py","cli/python/src/mem0_cli/branding.py","cli/python/src/mem0_cli/commands/__init__.py","cli/python/src/mem0_cli/commands/agent_mode_cmd.py","cli/python/src/mem0_cli/commands/agent_rush_cmd.py","cli/python/src/mem0_cli/commands/config_cmd.py","cli/python/src/mem0_cli/commands/entities.py","cli/python/src/mem0_cli/commands/events_cmd.py","cli/python/src/mem0_cli/commands/identify_cmd.py","cli/python/src/mem0_cli/commands/init_cmd.py","cli/python/src/mem0_cli/commands/memory.py","cli/python/src/mem0_cli/commands/utils.py","cli/python/src/mem0_cli/commands/whoami_cmd.py","cli/python/src/mem0_cli/config.py","cli/python/src/mem0_cli/output.py","cli/python/src/mem0_cli/plugin_sync.py","cli/python/src/mem0_cli/state.py","cli/python/src/mem0_cli/telemetry.py","cli/python/src/mem0_cli/telemetry_sender.py","cli/python/tests/__init__.py","cli/python/tests/conftest.py","cli/python/tests/test_agent_mode.py","cli/python/tests/test_branding.py","cli/python/tests/test_cli_integration.py","cli/python/tests/test_commands.py","cli/python/tests/test_config.py","cli/python/tests/test_init_internals.py","cli/python/tests/test_option_parity.py","cli/python/tests/test_output.py","cli/python/tests/test_platform_backend.py","cli/python/tests/test_platform_backend_options.py","cli/python/tests/test_platform_backend_paths.py","cli/python/tests/test_telemetry.py","docs/AGENTS.md","docs/CLAUDE.md","docs/README.md","docs/_snippets/async-memory-add.mdx","docs/_snippets/blank-notif.mdx","docs/_snippets/get-help.mdx","docs/_snippets/star-on-github.mdx","docs/api-reference.mdx","docs/api-reference/entities/delete-user.mdx","docs/api-reference/entities/get-users.mdx","docs/api-reference/events/get-event.mdx","docs/api-reference/events/get-events.mdx","docs/api-reference/memory/add-memories.mdx","docs/api-reference/memory/batch-delete.mdx","docs/api-reference/memory/batch-update.mdx","docs/api-reference/memory/create-memory-export.mdx","docs/api-reference/memory/delete-memories.mdx","docs/api-reference/memory/delete-memory.mdx","docs/api-reference/memory/feedback.mdx","docs/api-reference/memory/get-memories.mdx","docs/api-reference/memory/get-memory-export.mdx","docs/api-reference/memory/get-memory.mdx","docs/api-reference/memory/history-memory.mdx","docs/api-reference/memory/search-memories.mdx","docs/api-reference/memory/update-memory.mdx","docs/api-reference/organization/add-org-member.mdx","docs/api-reference/organization/create-org.mdx","docs/api-reference/organization/delete-org.mdx","docs/api-reference/organization/get-org-members.mdx","docs/api-reference/organization/get-org.mdx","docs/api-reference/organization/get-orgs.mdx","docs/api-reference/organization/remove-org-member.mdx","docs/api-reference/organization/update-org-member.mdx","docs/api-reference/organizations-projects.mdx","docs/api-reference/project/add-project-member.mdx","docs/api-reference/project/create-project.mdx","docs/api-reference/project/delete-project.mdx","docs/api-reference/project/get-project-members.mdx","docs/api-reference/project/get-project.mdx","docs/api-reference/project/get-projects.mdx","docs/api-reference/project/remove-project-member.mdx","docs/api-reference/project/update-project-member.mdx","docs/api-reference/project/update-project.mdx","docs/api-reference/webhook/create-webhook.mdx","docs/api-reference/webhook/delete-webhook.mdx","docs/api-reference/webhook/get-webhook.mdx","docs/api-reference/webhook/update-webhook.mdx","docs/changelog/highlights.mdx","docs/changelog/platform.mdx","docs/changelog/sdk.mdx","docs/components/embedders/config.mdx","docs/components/embedders/models/aws_bedrock.mdx","docs/components/embedders/models/azure_openai.mdx","docs/components/embedders/models/fastembed.mdx","docs/components/embedders/models/google_AI.mdx","docs/components/embedders/models/huggingface.mdx","docs/components/embedders/models/langchain.mdx","docs/components/embedders/models/lmstudio.mdx","docs/components/embedders/models/ollama.mdx","docs/components/embedders/models/openai.mdx","docs/components/embedders/models/together.mdx","docs/components/embedders/models/vertexai.mdx","docs/components/embedders/overview.mdx","docs/components/llms/config.mdx","docs/components/llms/models/anthropic.mdx","docs/components/llms/models/aws_bedrock.mdx","docs/components/llms/models/azure_openai.mdx","docs/components/llms/models/deepseek.mdx","docs/components/llms/models/google_AI.mdx","docs/components/llms/models/groq.mdx","docs/components/llms/models/langchain.mdx","docs/components/llms/models/litellm.mdx","docs/components/llms/models/lmstudio.mdx","docs/components/llms/models/minimax.mdx","docs/components/llms/models/mistral_AI.mdx","docs/components/llms/models/ollama.mdx","docs/components/llms/models/openai.mdx","docs/components/llms/models/sarvam.mdx","docs/components/llms/models/together.mdx","docs/components/llms/models/vllm.mdx","docs/components/llms/models/xAI.mdx","docs/components/llms/overview.mdx","docs/components/rerankers/config.mdx","docs/components/rerankers/custom-prompts.mdx","docs/components/rerankers/models/cohere.mdx","docs/components/rerankers/models/huggingface.mdx","docs/components/rerankers/models/llm_reranker.mdx","docs/components/rerankers/models/sentence_transformer.mdx","docs/components/rerankers/models/zero_entropy.mdx","docs/components/rerankers/optimization.mdx","docs/components/rerankers/overview.mdx","docs/components/vectordbs/config.mdx","docs/components/vectordbs/dbs/azure.mdx","docs/components/vectordbs/dbs/azure_mysql.mdx","docs/components/vectordbs/dbs/baidu.mdx","docs/components/vectordbs/dbs/cassandra.mdx","docs/components/vectordbs/dbs/chroma.mdx","docs/components/vectordbs/dbs/databricks.mdx","docs/components/vectordbs/dbs/elasticsearch.mdx","docs/components/vectordbs/dbs/faiss.mdx","docs/components/vectordbs/dbs/langchain.mdx","docs/components/vectordbs/dbs/milvus.mdx","docs/components/vectordbs/dbs/mongodb.mdx","docs/components/vectordbs/dbs/neon.mdx","docs/components/vectordbs/dbs/neptune_analytics.mdx","docs/components/vectordbs/dbs/opensearch.mdx","docs/components/vectordbs/dbs/oracledb.mdx","docs/components/vectordbs/dbs/pgvector.mdx","docs/components/vectordbs/dbs/pinecone.mdx","docs/components/vectordbs/dbs/qdrant.mdx","docs/components/vectordbs/dbs/redis.mdx","docs/components/vectordbs/dbs/s3_vectors.mdx","docs/components/vectordbs/dbs/supabase.mdx","docs/components/vectordbs/dbs/turbopuffer.mdx","docs/components/vectordbs/dbs/upstash-vector.mdx","docs/components/vectordbs/dbs/valkey.mdx","docs/components/vectordbs/dbs/vectorize.mdx","docs/components/vectordbs/dbs/vertex_ai.mdx","docs/components/vectordbs/dbs/weaviate.mdx","docs/components/vectordbs/overview.mdx","docs/contributing/development.mdx","docs/contributing/documentation.mdx","docs/cookbooks/companions/ai-tutor.mdx","docs/cookbooks/companions/local-companion-ollama.mdx","docs/cookbooks/companions/nodejs-companion.mdx","docs/cookbooks/companions/quickstart-demo.mdx","docs/cookbooks/companions/travel-assistant.mdx","docs/cookbooks/companions/voice-companion-openai.mdx","docs/cookbooks/companions/youtube-research.mdx","docs/cookbooks/essentials/building-ai-companion.mdx","docs/cookbooks/essentials/entity-partitioning-playbook.mdx","docs/cookbooks/essentials/exporting-memories.mdx","docs/cookbooks/essentials/tagging-and-organizing-memories.mdx","docs/cookbooks/frameworks/eliza-os-character.mdx","docs/cookbooks/frameworks/gemini-3-with-mem0-mcp.mdx","docs/cookbooks/frameworks/llamaindex-multiagent.mdx","docs/cookbooks/frameworks/llamaindex-react.mdx","docs/cookbooks/frameworks/multimodal-retrieval.mdx","docs/cookbooks/integrations/agents-sdk-tool.mdx","docs/cookbooks/integrations/aws-bedrock.mdx","docs/cookbooks/integrations/healthcare-google-adk.mdx","docs/cookbooks/integrations/mastra-agent.mdx","docs/cookbooks/integrations/openai-tool-calls.mdx","docs/cookbooks/integrations/tavily-search.mdx","docs/cookbooks/operations/content-writing.mdx","docs/cookbooks/operations/deep-research.mdx","docs/cookbooks/operations/email-automation.mdx","docs/cookbooks/operations/support-inbox.mdx","docs/cookbooks/operations/team-task-agent.mdx","docs/cookbooks/overview.mdx","docs/core-concepts/how-it-works.mdx","docs/core-concepts/memory-evaluation.mdx","docs/core-concepts/memory-operations/add.mdx","docs/core-concepts/memory-operations/delete.mdx","docs/core-concepts/memory-operations/search.mdx","docs/core-concepts/memory-operations/update.mdx","docs/core-concepts/memory-types.mdx","docs/docs.json","docs/favicon.ico","docs/favicon.svg","docs/images/banner-sm.png","docs/images/dify-mem0-integration.png","docs/images/docs thumbnails/dark/API.png","docs/images/docs thumbnails/dark/Cookbooks.png","docs/images/docs thumbnails/dark/mem0-cli.png","docs/images/docs thumbnails/dark/mem0-integrations.png","docs/images/docs thumbnails/dark/mem0-platform.png","docs/images/docs thumbnails/dark/mem0-plugins.png","docs/images/docs thumbnails/dark/mem0_open_source.png","docs/images/docs thumbnails/light/API.png","docs/images/docs thumbnails/light/Cookbooks.png","docs/images/docs thumbnails/light/mem0-cli.png","docs/images/docs thumbnails/light/mem0-integrations.png","docs/images/docs thumbnails/light/mem0-platform.png","docs/images/docs thumbnails/light/mem0-plugins.png","docs/images/docs thumbnails/light/mem0_open_source.png","docs/images/graph-platform.png","docs/images/hero-dark.svg","docs/images/hero-light.svg","docs/images/mem0-bg.png","docs/images/memory-agent-stack.png","docs/images/memory-extraction.png","docs/images/openclaw-architecture.png","docs/images/platform/activity.png","docs/images/platform/api-key.png","docs/images/playground/pg-add-memory.png","docs/images/playground/pg-retrieve-memory.png","docs/images/provider-icons/agno.svg","docs/images/provider-icons/anthropic.svg","docs/images/provider-icons/autogen.svg","docs/images/provider-icons/aws-color.svg","docs/images/provider-icons/azure-color.svg","docs/images/provider-icons/bedrock-color.svg","docs/images/provider-icons/camel.svg","docs/images/provider-icons/chroma.svg","docs/images/provider-icons/cohere.svg","docs/images/provider-icons/crewai.svg","docs/images/provider-icons/databricks.svg","docs/images/provider-icons/deepseek-color.svg","docs/images/provider-icons/dify.svg","docs/images/provider-icons/elasticsearch.svg","docs/images/provider-icons/elevenlabs.svg","docs/images/provider-icons/google-color.svg","docs/images/provider-icons/groq.svg","docs/images/provider-icons/hermes.svg","docs/images/provider-icons/huggingface.svg","docs/images/provider-icons/langchain-color.svg","docs/images/provider-icons/langchain.svg","docs/images/provider-icons/livekit.svg","docs/images/provider-icons/llamaindex.svg","docs/images/provider-icons/lmstudio.svg","docs/images/provider-icons/mastra.svg","docs/images/provider-icons/milvus.svg","docs/images/provider-icons/minimax-color.svg","docs/images/provider-icons/mistral-color.svg","docs/images/provider-icons/mongodb.svg","docs/images/provider-icons/ollama.svg","docs/images/provider-icons/openai.svg","docs/images/provider-icons/openclaw.svg","docs/images/provider-icons/opensearch.svg","docs/images/provider-icons/oracle.svg","docs/images/provider-icons/pinecone.svg","docs/images/provider-icons/pipecat.svg","docs/images/provider-icons/postgresql.svg","docs/images/provider-icons/qdrant.svg","docs/images/provider-icons/raycast.svg","docs/images/provider-icons/redis.svg","docs/images/provider-icons/sarvam.svg","docs/images/provider-icons/supabase.svg","docs/images/provider-icons/together-color.svg","docs/images/provider-icons/turbopuffer.svg","docs/images/provider-icons/upstash.svg","docs/images/provider-icons/valkey.svg","docs/images/provider-icons/vercel.svg","docs/images/provider-icons/vertexai.svg","docs/images/provider-icons/xai.svg","docs/images/provider-icons/zeroentropy.svg","docs/images/rest-api-server.png","docs/images/stateless-vs-stateful-agent-2.png","docs/images/stateless-vs-stateful-agent.png","docs/integrations.mdx","docs/integrations/agentops.mdx","docs/integrations/agno.mdx","docs/integrations/antigravity.mdx","docs/integrations/autogen.mdx","docs/integrations/aws-bedrock.mdx","docs/integrations/camel-ai.mdx"],"storefront":"/r/mem0ai","claimed":false,"request_supported":{"post":"https://gitbuyer.com/r/mem0ai/mem0/request-supported","requests":0},"note":"indexed from public GitHub; nothing is for sale on this page. Clone it from GitHub. Paid listings live at /search."}