Persistent memory for LLMs - Give your AI conversations long-term memory with intelligent context retrieval
Project description
Memory Mori
Persistent memory for LLMs - Give your AI conversations long-term memory with intelligent context retrieval.
Memory Mori is a Python library that provides persistent, searchable memory for Large Language Models (LLMs). It remembers past conversations, user preferences, and important context, then intelligently retrieves relevant information when needed.
Perfect for building chatbots, AI assistants, and conversational agents that need to remember user interactions across sessions.
Key capabilities:
- ๐ง Persistent Memory: Store and retrieve conversation history across sessions
- ๐ Smart Retrieval: Hybrid search combines semantic understanding with keyword matching
- ๐ค User Profiles: Automatically learns and remembers user preferences, skills, and context
- โฐ Time Awareness: Recent memories are prioritized, old ones fade naturally
- ๐ท๏ธ Entity Tracking: Remembers people, organizations, tools, and technologies mentioned
- ๐ Easy Integration: Works with OpenAI, Claude, Ollama, and any LLM
Features
๐ Hybrid Search (Layer 1)
- Semantic Search: all-mpnet-base-v2 embeddings for meaning-based retrieval
- Keyword Search: BM25 algorithm for exact term matching
- Optimized Weighting: 80% semantic, 20% keyword (tuned for precision)
- ChromaDB Backend: Efficient vector storage and retrieval
๐ท๏ธ Entity Extraction (Layer 2)
- Named Entity Recognition: Using spaCy en_core_web_lg with custom tech patterns
- 50+ Tech Patterns: Python, React, Docker, Kubernetes, GPT-4, etc.
- 5 Core Types: PERSON, ORG, DATE, PRODUCT, EVENT
- Entity Filtering: Search within specific entity types
๐ค Profile Learning (Layer 3)
- SQLite Backend: Persistent user profile storage
- 5 Categories: role, preference, project, skill, context
- Confidence-Based: Higher confidence facts override lower ones
- Auto-Extraction: Profile facts learned from conversations
โฐ Time-Based Decay (Layer 4)
- Exponential Decay: score = base ร e^(-ฮป ร time)
- Smart Aging: Recent memories prioritized over old ones
- Access Tracking: Documents track created_at, last_accessed
- Auto Cleanup: Remove stale documents below threshold
โจ Recent Improvements
- GPU Acceleration: Automatic GPU detection and support (2-3x faster with CUDA)
- Score Thresholding: Filter low-confidence results (min_score=0.3)
- Focused Results: Default max_items=3 for higher precision
- Custom Tech Patterns: Better detection of programming languages, frameworks, tools
Installation
# Install Memory Mori from PyPI
pip install memory-mori
# Download spaCy language model (required)
python -m spacy download en_core_web_lg
That's it! Memory Mori will automatically install all dependencies (ChromaDB, sentence-transformers, spaCy, etc.).
Quick Start
Here's a minimal example integrating Memory Mori with OpenAI:
from openai import OpenAI
from memory_mori import MemoryMori
# Initialize
client = OpenAI(api_key="your-api-key")
mm = MemoryMori()
def chat(user_input):
# Get relevant context from past conversations
context = mm.get_context(user_input, max_items=3)
# Create prompt with context
messages = [{"role": "system", "content": f"Context: {context}"}] if context else []
messages.append({"role": "user", "content": user_input})
# Get AI response
response = client.chat.completions.create(model="gpt-4o-mini", messages=messages)
ai_message = response.choices[0].message.content
# Store conversation for future context
mm.store(f"User: {user_input}\nAssistant: {ai_message}")
return ai_message
# Use it
print(chat("I'm building a chatbot with Python"))
print(chat("What language am I using?")) # It remembers!
That's it! Your chatbot now has persistent memory across conversations.
Configuration
from memory_mori import MemoryConfig
# Custom configuration
config = MemoryConfig(
alpha=0.8, # 80% semantic, 20% keyword
lambda_decay=0.05, # Slow decay rate
entity_model="en_core_web_md", # Entity extraction model
enable_entities=True, # Enable entity extraction
enable_profile=True, # Enable profile learning
device="auto" # Device: "auto", "cpu", or "cuda"
)
mm = MemoryMori(config)
# Or use presets
config = MemoryConfig.from_preset('standard') # Balanced
config = MemoryConfig.from_preset('high_accuracy') # Uses larger model
config = MemoryConfig.from_preset('minimal') # Lightweight
GPU Acceleration
Memory Mori automatically detects and uses GPU when available for 2-3x performance improvement:
# Auto-detect GPU (default)
config = MemoryConfig(device="auto")
# Force CPU usage
config = MemoryConfig(device="cpu")
# Force GPU usage (with CPU fallback)
config = MemoryConfig(device="cuda")
Requirements for GPU:
- NVIDIA GPU with CUDA support
- PyTorch with CUDA:
pip install torch --index-url https://download.pytorch.org/whl/cu118
API Reference
MemoryMori
store(text, metadata=None) -> str
Store a memory.
doc_id = mm.store(
"Python is great for data science",
metadata={"source": "conversation"}
)
retrieve(query, filters=None, max_items=3, min_score=0.3) -> List[Memory]
Retrieve relevant memories.
# Basic retrieval
results = mm.retrieve("Python programming")
# With filters and thresholds
results = mm.retrieve(
"web development",
max_items=5,
min_score=0.5,
filters={"entity_type": "PRODUCT"}
)
get_context(query, max_items=3, include_profile=True) -> str
Get formatted context for LLM prompts.
context = mm.get_context("What technologies do I use?")
# Returns formatted string with relevant memories and profile
update_profile(facts: Dict)
Manually update profile facts.
mm.update_profile({
"job_title": ("Software Engineer", "role", 0.9),
"likes_coffee": ("true", "preference", 0.8)
})
get_profile(category=None) -> Dict
Get profile facts.
profile = mm.get_profile()
# Or filter by category
preferences = mm.get_profile(category="preference")
cleanup(threshold=0.01) -> int
Clean up stale memories.
removed_count = mm.cleanup(threshold=0.01)
Examples
See the examples/ folder for minimal integration examples:
- example_openai.py - OpenAI/GPT integration
- example_claude.py - Claude/Anthropic integration
- example_ollama.py - Ollama/Local models integration
All examples are interactive and simple to run.
Project Structure
memory_mori/
โโโ api.py # Main MemoryMori class
โโโ config.py # Configuration and data classes
โโโ core/
โ โโโ search.py # Hybrid search
โ โโโ entities.py # Entity extraction with tech patterns
โ โโโ profile.py # Profile management
โ โโโ decay.py # Time-based decay
โ โโโ device.py # GPU/CPU device management
โโโ stores/
โ โโโ vector_store.py # ChromaDB wrapper
โ โโโ profile_store.py # SQLite profile storage
โโโ examples/
โ โโโ example_openai.py # Minimal OpenAI integration
โ โโโ example_claude.py # Minimal Claude integration
โ โโโ example_ollama.py # Minimal Ollama integration
โโโ tests/ # Testing and benchmarking tools
โโโ utils/ # Utility functions
Performance
Based on benchmarks:
- Storage: ~19 docs/sec
- Retrieval: ~25ms per query (40 queries/sec)
- Context Generation: ~22ms per query
Advanced Features
Entity-Based Filtering
# Only retrieve memories about products/tools
results = mm.retrieve(
"programming tools",
filters={"entity_type": "PRODUCT"}
)
Score Thresholding
# Only high-confidence results
results = mm.retrieve(query, min_score=0.6)
# All results (no threshold)
results = mm.retrieve(query, min_score=0.0)
Profile-Enhanced Context
# Get context with user profile
context = mm.get_context(query, include_profile=True)
# Without profile
context = mm.get_context(query, include_profile=False)
Custom Decay Rates
config = MemoryConfig(
lambda_decay=0.01, # Very slow decay
decay_mode="combined" # Use both creation and access time
)
Requirements
- Python 3.8+
- chromadb
- sentence-transformers
- spacy (with en_core_web_md)
- rank_bm25
Contributing
This is a personal project, but suggestions and feedback are welcome!
License
MIT License
Author
David Halvarson
Note: For production use, consider:
- Using environment variables for API keys
- Implementing proper error handling
- Adding logging
- Setting up proper data persistence paths
- Monitoring memory usage and performance
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file memory_mori-0.1.3.tar.gz.
File metadata
- Download URL: memory_mori-0.1.3.tar.gz
- Upload date:
- Size: 42.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18d018f0daa0a79f35a3214ad79f73cf9c4a4822f4269c1e7b3f99433a31b6c4
|
|
| MD5 |
08b83a4b18d6560781fa8f3d78eb7d2d
|
|
| BLAKE2b-256 |
cd14a8485f92baf2c97ee4a0179f54f90568d0b70caee758d34face478e250f3
|
File details
Details for the file memory_mori-0.1.3-py3-none-any.whl.
File metadata
- Download URL: memory_mori-0.1.3-py3-none-any.whl
- Upload date:
- Size: 29.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8327d9c4d32a75af1888d44e18a0f36e996b20af0cae7efa1b9dd499ab042e55
|
|
| MD5 |
7537f66026ab683ffd30550d98b5de81
|
|
| BLAKE2b-256 |
66227a6095b0eadb21a7a4ff33e9853b96f75d8fcf67f225ab33a3dfad710a54
|