Shodh Memory
Documentation
Everything you need to get started with Shodh Memory - the open-source cognitive memory system for AI agents
Looking for Shodh RAG docs? RAG documentation is provided during enterprise pilots.Contact us to get started →
Quick Install
Resources
Guides
Quick Example
Python
from shodh_memory import Memory
# Initialize
m = Memory()
# Store a memory
m.remember("User prefers dark mode", memory_type="Decision", tags=["preferences"])
# Recall memories
results = m.recall("What are the user preferences?")
for r in results:
print(f"[{r['experience_type']}] {r['content']}")
# Get context summary for LLM bootstrap
summary = m.context_summary()
print(summary["decisions"])