Multi-Modal Memory

Every memory an agent needs, in one place.

Most AI memory products give you one shape: a vector blob. Minds gives you the full neuroscience-grounded hierarchy — six memory types, unified under one async API, with auditable forgetting and cryptographic lineage.

Hybrid retrieval

Vector, graph, and episodic — one call.

The MetaMemoryManager fuses results across memory types in a single async call. No more wiring three databases together and praying the responses align.

hybrid recall — fuse all memory modestypescript
import { Minds } from "@minds-sdk/typescript";

const minds = new Minds({ apiKey: process.env.MINDS_KEY });

// One call. Fuses across vector, graph, and episodic memory.
const memories = await minds.recall({
  query: "Why did Q3 revenue dip?",
  modes: ["vector", "graph", "episodic"],
  timepoint: "2026-10-01",         // bi-temporal — query the past
  microtheory: "finance",          // scope to a worldview
  source: ["observed", "inferred"],// filter by attribution
  topK: 5,
});

for (const m of memories) {
  console.log(m.confidence, m.source, m.text);
}
Auditable forgetting

GDPR delete-requests, cryptographically.

Every deletion is justified, signed, and tamper-evident. Knowledge laundering is structurally impossible. Belief-taint tracking ensures untrusted sources can never reach Tier-1 recommendations.

Memory architecture
Memory types
6 (episodic, procedural, resource, vault, working, associative)
Capacity model
Miller 7±2 (working)
Decay functions
linear · exponential · power-law · ACT-R
Source attribution
observed · inferred · imagined · reported · reconstructed
Bi-temporal
valid time + transaction time
Concurrency
MVCC, 100K+ ops/sec
Tests
451+ across memory crates
Compliance & audit
Audit chain
BLAKE3, Merkle-anchored
Encryption at rest
AES-256-GCM, per-namespace keys
Key derivation
HKDF-SHA256
Forgetting
auditable · justified · signed
Lineage
every belief traced to its source
Quarantine
verification gates before promotion
GDPR
cryptographic delete-receipts

Build a mind that remembers.

Start with the SDK. Ship in an afternoon. Run anywhere — Akasha Cloud, on-prem, or air-gapped.