Normalized for Mintlify from
knowledge-base/neurigraph-memory-architecture/hyperthyme-memory-framework/legacy-memory-recall-overview.mdx.Recall: Persistent Conversational Memory System
Overview
Recall is a memory persistence layer for the AI brain that solves two fundamental limitations in current AI systems:- Context window limits — Conversations eventually exceed what the AI can “see” at once
- Session persistence — Information is lost when a chat ends or a new session begins
How It Works
Recall continuously captures conversation content into simple markdown files at configurable intervals (e.g., every N tokens or based on other metrics). These files serve as a searchable memory archive that exists outside any single conversation.The Flow
Key Characteristics
- Format: Plain markdown files (simple, readable, portable)
- Trigger: Configurable intervals (token count, time, or custom metric)
- Scope: Works across any chat session—not tied to a single conversation
- Retrieval: Search-based lookup when current context lacks needed information
Why This Works
Traditional AI memory approaches often involve:- Complex vector databases
- Embedding-based semantic search
- Summarization that loses detail
Use Cases
- Recalling project decisions made weeks ago
- Picking up a topic from a previous session
- Cross-referencing information discussed in different chats
- Building continuity in long-running projects
Part of the AI Brain architecture