Install
openclaw skills install quantum-memoryQuantum-enhanced long-term memory for AI agents — #1 on LongMemEval (98.6% R@5, 99.4% R@10, 0.9426 NDCG). Chunked gte-large retrieval with QAOA+CVaR subgraph optimization for agents.
openclaw skills install quantum-memoryQuantum-enhanced long-term memory for AI agents. Uses chunked gte-large embeddings for state-of-the-art semantic retrieval with QAOA+CVaR quantum subgraph optimization for graph-based reasoning.
| Metric | Score |
|---|---|
| R@1 | 90.6% |
| R@5 | 98.6% |
| R@10 | 99.4% |
| NDCG@10 | 0.9426 |
Benchmark: LongMemEval-S (500 questions, 18,464 sessions), May 28 2026
from quantum_memory_graph import MemoryGraph
mg = MemoryGraph()
mg.store("Project Alpha uses React frontend with TypeScript.")
mg.store("Project Alpha backend is FastAPI with PostgreSQL.")
# Recall — chunked semantic retrieval + optional QAOA refinement
results = mg.retrieve("What is Project Alpha's tech stack?", top_k=5)
Or as a FastAPI server for agent integration:
pip install quantum-memory-graph
quantum-memory-graph serve # serves /store, /recall, /stats endpoints
MIT