What problem does it solve?
NeuralMemory provides a persistent associative memory for AI agents by building a neural graph where memories connect via typed synapses and are recalled through spreading activation, instead of relying on keyword or vector search. It uses Hebbian learning to strengthen frequently co-accessed memories, while idle memories decay naturally, and it auto-detects contradictions to maintain consistency.
Core Features & Use Cases
- Graph-based recall: traverse explicit relationships to surface conceptually related memories even when keywords differ.
- Hebbian learning & decay: memories strengthen with use and fade over time for relevance.
- Contradiction detection: auto-detects conflicting memories and prioritizes current knowledge.
- Zero-LLM dependency: runs offline without external embeddings or LLMs.
- Local brain storage: memories persist in a local database with independent brain instances.
Quick Start
Install NeuralMemory with pip and begin storing and recalling memories across sessions.