Persistent, structured memory across every conversation, session, and user. One SDK call and your agent never forgets.
npm install @agentrecall/sdk
Every session resets. Your agent forgets user preferences, past decisions, and everything it learned last week.
Forcing full history into every prompt burns tokens fast. Cost scales, performance degrades, and context collapses.
You built the agent. But it can't remember what it did yesterday, who it talked to, or what it learned. That's not intelligence.
Current AI frameworks store context as raw text, summaries, or vector chunks. This leads to predictable failures.
Drop the AgentRecall SDK into any agent in minutes. Works with LangChain, AutoGen, CrewAI, or custom harnesses.
Every interaction is captured, structured, and stored. Preferences, decisions, context. All persistent.
Before every response, AgentRecall surfaces the most relevant memories. No token waste. No context rot.
// 1. Import the SDK
import { AgentRecall } from '@agentrecall/sdk';
// 2. Initialize once per agent
const memory = new AgentRecall({
agentId: 'support-agent-v2'
});
// 3. Use it — everything is automatic
memory.capture(context);
const relevant = await memory.recall({
query: userMessage,
limit: 5
});
Memories aren't raw text dumps. AgentRecall extracts entities, relations, and facts — so retrieval is precise, not fuzzy.
Works with LangChain, AutoGen, CrewAI, Vertex AI, Claude Agents, or any custom harness. One SDK, any stack.
Configurable retention, selective forgetting, and user-controlled deletion. Privacy built in by default.
Agents share memory pools when it makes sense. Team context, shared knowledge bases, coordinated recall.
Dashboard showing what's stored, what's recalled, retrieval quality, and memory health in real time.
Semantic search meets structured queries. Find the agent's memories about "customer payment failures last month" with one call.
The agents that remember are the ones that ship real value. AgentRecall is the memory layer that makes that possible — managed, fast, and production-ready.