docs/core-concepts/memory-evaluation.mdx
Most AI agent memory systems retrieve information by maximizing context window size. That works on benchmarks but not in production, where every token adds cost. Token efficiency means achieving high accuracy with less context per query. It is what separates benchmark performance from production viability.
Mem0's algorithm achieves competitive accuracy on LoCoMo, LongMemEval, and BEAM while averaging under 7,000 tokens per retrieval call. Full-context approaches on the same benchmarks routinely consume 25,000+ tokens per query. Unless noted otherwise, scores are reported at a top_200 retrieval budget (the 200 highest-ranked memories per query).
Evaluating a memory system at scale comes down to three parameters: accuracy (what the benchmarks measure), cost (context tokens per query), and performance (latency). Optimizing one is easy. Balancing all three at scale is the actual problem.
Some benchmarks today, particularly smaller ones like LoCoMo and LongMemEval, can be materially improved by aggressive retrieval strategies, larger context windows, or frontier models. That does not necessarily mean the underlying memory system has gotten better. We evaluate under constraints that reflect how memory systems actually run in production: limited context windows and practical token budgets.
Mem0's memory system operates across two phases, extraction (writing) and retrieval (reading), connected by a graph memory layer (entity linking) and a temporal reasoning layer (time metadata written during extraction and scored during retrieval).
When new conversations arrive, the extraction pipeline processes them through six stages:
Memories are distributed across three storage layers, each tuned for a specific retrieval pattern:
| Store | Contents | Purpose |
|---|---|---|
| Vector Database | Memory text, embeddings, metadata (timestamps, hash, categories, attributed_to) | Primary fact storage + semantic retrieval |
| Graph / Entity Store | Entities + embeddings + linked memory IDs | Graph connections across memories + entity-based retrieval boost |
| SQL Database | History log (ADD events) + rolling message window | Audit trail + extraction dedup context |
When a query arrives, the retrieval pipeline scores candidates across multiple signals in parallel:
These signals are fused via rank scoring into the final top-K set. The temporal score is additive and semantic relevance always dominates; it nudges ranking toward the correct dated instance without filtering candidates out or overriding a strong semantic match, so relevant memories are never dropped. Different query types lean on different signals:
| Query Type | Primary Signal | Example |
|---|---|---|
| Conceptual | Semantic | "What does the user think about remote work?" |
| Factual/exact | BM25 keyword | "What meetings did I attend last week?" |
| Entity-centric | Entity matching | "What do we know about Alice?" |
| Temporal | Temporal reasoning | "When did the user first mention the project?" |
The combined score outperformed every individual signal across every category tested.
LoCoMo tests single-hop, multi-hop, open-domain, and temporal memory recall across conversational sessions.
| Category | Score |
|---|---|
| Overall | 92.5 |
| Single-hop | 91.2 |
| Multi-hop | 91.3 |
| Open-domain | 72.7 |
| Temporal | 92.0 |
Mean tokens: 6,956.
Temporal reasoning is on by default and helps most on temporal (92.0) and multi-hop (91.3) questions, where the system has to identify which dated instance applies, while open-domain (72.7) does not benefit and is actively being tuned.
LongMemEval evaluates memory across single-session and multi-session contexts, including knowledge updates and temporal reasoning.
| Category | Score |
|---|---|
| Overall | 94.4 |
| Single-session (user) | 98.6 |
| Single-session (assistant) | 98.2 |
| Single-session (preference) | 96.7 |
| Knowledge update | 93.6 |
| Temporal reasoning | 97.0 |
| Multi-session | 88.0 |
Mean tokens: 6,787.
Temporal reasoning is the standout at a top_200 budget, reaching 97.0 on the temporal-reasoning category, with single-session user and assistant both near-saturated (98.6 and 98.2). Knowledge update (93.6) remains the hardest category for an additive, ADD-only architecture: older facts are preserved rather than overwritten, so semantically similar prior facts can still surface alongside newer ones.
BEAM evaluates memory systems at 1M and 10M token scales across ten task categories. It is the only public benchmark that operates at context volumes production AI agents actually encounter.
| Category | 1M | 10M |
|---|---|---|
| Overall | 64.1 | 48.6 |
| preference_following | 88.3 | 90.4 |
| instruction_following | 85.2 | 82.5 |
| information_extraction | 70.0 | 56.3 |
| knowledge_update | 65.0 | 75.0 |
| multi_session_reasoning | 65.2 | 26.1 |
| summarization | 63.5 | 46.9 |
| temporal_reasoning | 61.8 | 16.3 |
| event_ordering | 53.6 | 20.2 |
| abstention | 52.5 | 40.0 |
| contradiction_resolution | 35.7 | 32.5 |
Mean tokens (1M): 6,719. Mean tokens (10M): 6,914.
<Info> **BEAM is the most relevant benchmark here.** It operates at 1M and 10M token scales and cannot be solved by simply expanding the context window. The results at 10M reflect where memory systems actually stand at production context volumes. The system holds up well on preference following, instruction following, and knowledge updates at both scales. Weaker categories at 10M (temporal reasoning, event ordering, multi-session reasoning) are open problems across the field. They require higher-order representations of how events relate to each other across time, which is a primary focus of our ongoing research. </Info>All results use a single-pass retrieval setup (one retrieval call, one answer, no agentic loops) at a top_200 retrieval budget.
| Benchmark | Score | Average tokens / query |
|---|---|---|
| LoCoMo | 92.5 | 6,956 |
| LongMemEval | 94.4 | 6,787 |
| BEAM (1M) | 64.1 | 6,719 |
| BEAM (10M) | 48.6 | 6,914 |
All benchmarks run on the same production-representative model stack. Scores carry a ±1 point confidence interval due to judge inconsistency.
The full evaluation framework is open-sourced so anyone can reproduce the numbers independently. It supports both Mem0 Cloud and self-hosted OSS backends.
# Set your API keys
export MEM0_API_KEY=m0-your-key
export OPENAI_API_KEY=sk-your-key
```
# Copy and configure environment
cp .env.example .env
# Edit .env to add OPENAI_API_KEY
# Start local Mem0 server + Qdrant
docker compose up -d
# Mem0 server: http://localhost:8888
# Qdrant: http://localhost:6333
```
Each benchmark is a Python module with its own runner (source code). All share common CLI options:
| Option | Default | Description |
|---|---|---|
--project-name | (required) | Run identifier for tracking results |
--backend | oss | oss (self-hosted) or cloud (Mem0 Platform) |
--mem0-api-key | N/A | Mem0 API key (required for cloud backend) |
--mem0-host | http://localhost:8888 | Mem0 server URL (for oss backend) |
--top-k | 200 | Number of memories to retrieve per query |
--top-k-cutoffs | 10,20,50,200 | Evaluate accuracy at multiple retrieval depths (BEAM default: 100) |
--answerer-model | (varies) | LLM for generating answers from retrieved memories |
--judge-model | (varies) | LLM for judging answer correctness |
--provider | openai | LLM provider: openai, anthropic, azure |
--judge-provider | (same as --provider) | Override provider for the judge model |
--max-workers | 10 | Parallel workers for evaluation |
--predict-only | N/A | Stop after search, skip answer + judge phases |
--evaluate-only | N/A | Skip ingest + search, evaluate existing results |
--resume | N/A | Resume from checkpoint (BEAM and LongMemEval; on by default for LongMemEval) |
python -m benchmarks.locomo.run
--project-name my-eval
--top-k 200
```bash LongMemEval
# 500 questions across 6 categories
python -m benchmarks.longmemeval.run \
--project-name my-eval \
--backend cloud \
--mem0-api-key $MEM0_API_KEY \
--all-questions \
--top-k 200
# Self-hosted
python -m benchmarks.longmemeval.run \
--project-name my-eval \
--all-questions \
--top-k 200
# 1M token scale (100 conversations)
python -m benchmarks.beam.run \
--project-name my-eval \
--backend cloud \
--mem0-api-key $MEM0_API_KEY \
--chat-sizes 1M \
--conversations 0-99 \
--top-k 200
# 10M token scale
python -m benchmarks.beam.run \
--project-name my-eval \
--backend cloud \
--mem0-api-key $MEM0_API_KEY \
--chat-sizes 10M \
--conversations 0-99 \
--top-k 200
To run evaluations with custom models (Azure OpenAI, Ollama, etc.), copy one of the provided configs:
# Available configs: openai.yaml, azure-openai.yaml, ollama.yaml
cp configs/azure-openai.yaml mem0-config.yaml
# Edit mem0-config.yaml with your model details
# Uncomment the volume mount in docker-compose.yml, then restart:
docker compose down && docker compose up -d
Results are saved to results/[benchmark]/ and can be explored through the built-in web UI:
npm install
npm run dev -- -p 3001
# Open http://localhost:3001
The UI lets you browse per-question results, inspect retrieval details, and compare multiple runs.
Each evaluated question produces a structured result:
{
"id": "locomo_q_001",
"group": "temporal",
"question": "When did the user first mention moving?",
"ground_truth": "During the March 3rd conversation",
"retrieval": {
"search_query": "when did user mention moving",
"search_results": ["..."],
"search_latency_ms": 123.4,
"total_results": 42
},
"generation": {
"generated_answer": "The user first mentioned moving on March 3rd",
"model": "<answerer-model>",
"prompt_tokens": 500,
"completion_tokens": 100
},
"judgment": {
"judgment": "CORRECT",
"score": 0.85,
"reason": "Answer correctly identifies the date",
"model": "<judge-model>"
},
"cutoff_results": {
"top_10": { "score": 0.75, "judgment": "CORRECT" },
"top_50": { "score": 0.85, "judgment": "CORRECT" },
"top_200": { "score": 0.90, "judgment": "CORRECT" }
}
}
When evaluating memory systems, keep these considerations in mind: