Skip to content

AriadneMemory for AI agents

Sub-millisecond search. Zero infrastructure.

Quick Start

python
from arriadne import AriadneMemory

memory = AriadneMemory("./my-memory.db")

# Store a memory
memory.add(
    content="VPS has 4 cores, 8GB RAM, Ubuntu 24.04",
    source="system",
    importance=0.8,
)

# Search — vector + keyword + graph, fused
results = memory.search("server specs", limit=5)
# → [<Memory content="VPS has 4 cores..." score=0.94>]
AriadneMnemosyneMem0ChromaDB
Vector search0.89ms153ms12ms8ms
Hybrid search⚠️
Knowledge graph⚠️
Runs locally
No daemon
bash
pip install arriadne

Released under the MIT License.