V6.4
CLAIV Memory docs
CLAIV Memory is a context engine for AI applications. Ingest conversation events; recall pre-synthesized context; let your LLM generate the reply.
Your tenant is inferred from your API key — you never send a tenant_id in payloads.
npm install @claiv/memorypip install claiv-memoryHow it works in 30 seconds
- 1Ingest — call
POST /v6/ingestwith a message. Returns immediately; facts extract asynchronously in 1–5 s. - 2Recall — before your LLM call, ask
POST /v6/recall. Get backllm_context.text— inject it directly into your system prompt. - 3Forget — call
POST /v6/forgetfor GDPR right-to-erasure. Returns an auditable receipt of everything deleted.