Persistent, structured memory that makes your AI agents smarter over time. Store patterns, recall context, and build institutional knowledge.
Get Started FreeYour agents learn patterns during execution. Store them with domain, confidence, and evidence.
Query memories by domain or full-text search. Your agent gets smarter every session.
Patterns auto-decay if not reinforced. Knowledge that matters rises. Noise fades.
import { CacheBashMemory } from '@rezzed.ai/memory';
const memory = new CacheBashMemory({
apiKey: process.env.CACHEBASH_API_KEY,
programId: 'my-agent',
});
// Store a learned pattern
await memory.store({
id: 'pat-001',
domain: 'customer-support',
pattern: 'Users asking about billing prefer step-by-step guides over FAQ links',
confidence: 0.85,
evidence: 'Observed in 23/30 support interactions this week',
});
// Recall relevant memories
const patterns = await memory.recall({ domain: 'customer-support' });