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/memory
pip install claiv-memory

How it works in 30 seconds

  1. 1Ingest — call POST /v6/ingest with a message. Returns immediately; facts extract asynchronously in 1–5 s.
  2. 2Recall — before your LLM call, ask POST /v6/recall. Get back llm_context.text — inject it directly into your system prompt.
  3. 3Forget — call POST /v6/forget for GDPR right-to-erasure. Returns an auditable receipt of everything deleted.