Verified memory for AI agents. Every write passes an admission gate, every read carries provenance, and when the evidence isn't there the system abstains instead of guessing.
Most memory layers optimize for how much they can recall. Verimem optimizes for whether you can trust what comes back: facts are admitted through an anti-confabulation gate, stored with their sources, revised through explicit supersession (never silent overwrites), and answered with citations — or with an honest "I don't know."
On retrieval itself we are competitive — and precise about what that means.
Our own internal runs (our harness, our embedding model, our judge — not
third-party reproduced, and not the GPT-4 judge the public leaderboards use,
so these are not a like-for-like ranking against them): LongMemEval_s
session-level recall@5 = 0.87 (judge-free, full 500 questions) and LoCoMo
QA-accuracy = 0.81 (n=150, Claude judge). That's good retrieval — but the
reason to choose Verimem is the layer above it: whether you can trust what comes
back. Method and raw numbers: docs/BENCHMARKS.md.
- Gated writes with the grounding moat ON by default — every fact enters as
a low-trust claim and must be backed by evidence to gain status. The
source⊢fact grounding gate (the moat) runs by default: an extraction
confabulation the source contradicts is quarantined, not absorbed. With an
injected llm judge it reaches AUROC 0.96–0.97 (sonnet, on SNLI held-out;
on out-of-distribution TruthfulQA/HaluEval it is ~0.81–0.90, and the free CE
~0.82 — the honest field numbers,
docs/EVIDENCE-external-2026-07-19.md); the no-setup default is the local CE (scope below). It works with no llm and in any language once the local judge model is installed (verimem warmupfetches it;verimem doctorverifies): the free local cross-encoder judges every write (multilingual — measured EN/IT/FR/ES, entailments score ~97–99, most contradictions ~0.6 — no per-fact LLM call). AMemory(llm=...)uses that llm as the judge instead (highest quality). Only when neither an llm nor the local model is present does the gate fail-open (admit) — it never blocks a user who has neither, and says so on the write with anL4-skippedadvisory. Honest scope of the CE-only judge (measured,benchmark/moat_multilingual_matrix.py): it reliably catches value/numeric contradictions across EN/IT/FR/ES (0 escapes in a 4-domain matrix) and off-topic confabs. Two known gaps close only with an llm judge: a plausible added inference the source never states (e.g. "…which reduced latency") scores high and is admitted; and an entity-substitution contradiction (swapping one allergen/product for another) can score mid-range in some languages — measured ~7% escape in Spanish, concentrated in that shape. A two-threshold band (on by default,VERIMEM_CE_BAND_ENFORCE=0reverts) holds the CE's uncertain middle zone, cutting that entity-substitution escape from 6.2% → 1.8% on the moat matrix with zero new false-blocks on entailed facts (measured) — and the band escalates to one llm adjudication OFFLINE-FIRST instead of parking the write: a local ollama judge (auto-detected; defaultqwen2.5:7b-instruct— measured AUROC 0.858 vs the CE's 0.829, 2.3% misconception escape vs ~18%, fully offline) is preferred, then aclaudeCLI on PATH (subscription, no key), else the write is held for review. The verdict admits (judge-of-recordlocal-band/claude-bandon the receipt) or blocks; any escalation failure falls back to held-for-review, an unreadable verdict never admits (ENGRAM_BAND_LLM=0opts out). An air-gapped box with ollama thus gets the full moat with no network. The residual ~2% scores high and still needs a full llm judge. A third measured limit: the CE hard-rejects true facts that require arithmetic or a unit/date conversion ("0.5 g" ⊢ "500 mg", "two weeks before March 20" ⊢ "March 6") or a low-resource language — those need an llm judge too. The moat is strongest with an llm; the free CE is the no-setup multilingual default. External certification (out-of-distribution,docs/EVIDENCE-external-2026-07-19.md): on our own 4-language structured-contradiction matrix the CE scores 0% false-block / 1.8% escape; on TruthfulQA heldout — plausible misconceptions it never trained on — it scores AUROC 0.829, and at the default cut ~24% of true paraphrases are declined and ~18% of plausible misconceptions escape (74% of those scoring ≥80, the plausible-inference blind spot). Read honestly: the CE-only judge is a high-precision structured-contradiction filter, not a universal truth-detector — plausible-falsehood / paraphrase-heavy workloads should configureMemory(llm=...). The write-gate checks source ⊢ fact, not factual truth. Opt-in origin tagging (tag_beliefs=Trueat ingest) additionally classes an unverified user assertion asuser_belief: stored, but out of default recall until you ask for it (search(..., include_beliefs=True)). - Cross-fact contradiction + same-source evolution — ON by default. A plain
Memory()no longer hoards a contradicted value: write "the plan costs 100 €" then "…150 €" (same source) and recall returns only the current one, the oldsuperseded_bythe new (never a silent overwrite — the old row stays for lineage). The deterministic lexical detector carries this at the defaultvalidate="full"for numeric / version / date / negation changes — measured onbenchmark/evolution_moat_vs_mem0.py: 100€→150€, 2.3.1→4.0.0, March→September (same year), 2025-03-06→2025-09-20, signed→not signed all retire the stale value with zero extra models. Entity swaps (one CEO→another) need the semantic NLI tier, which auto-enables when its model is already installed (verimem warmupfetches it; a pure filesystem check, no flag needed — measured 0/10 stale-leak across the full matrix on a warmed machine, vs mem0's 10/10). No model on disk → the tier stays off and costs nothing;ENGRAM_SEMANTIC_CONFLICT=0opts out explicitly. A cross-source clash quarantines the new instead (the griefing guard — one source never retires another's fact). Same-source authority is sound within a tenant + a single-agent-per-tenant assumption (verimem has no per-writer auth yet); a multi-agent tenant that can't trust its writers setsENGRAM_SUPERSEDE_SAME_SOURCE=0(detect, but quarantine instead of supersede), orMemory(preset="permissive")/validate="fast"to skip the moat. - Every write returns an adjudication receipt —
add()hands back a visible verdict:{disposition, evidence_class, judge, score, threshold, margin, reason, confidence_tier}. A quarantine is a reasoned verdict, never a silent drop, and the judge-of-record (which judge decided, against what threshold) rides every decision. Theconfidence_tier(high/borderline/low/unverified) is the instrument's confidence, not a truth claim: ahightier from the local CE can still be a plausible-but-unstated inference — readevidence_classfor what actually adjudicated the fact. - Quarantine recovery — a wrong block is visible and reversible. When the gate
holds a legitimate fact (an over-eager keyword flag on a real
lawyer/engineer/clinician statement, say), you can SEE it and undo it without
reaching into internals:
Memory.quarantine_log()lists held claims (with the blocking layers + reason when the audit trail is on), andMemory.restore(fact_id, reason=…)returns one to default recall. The same pair is on the MCP surface (hippo_quarantine_log/hippo_quarantine_restore). It is a guarded human override, not a back door: restore refuses a superseded fact (never resurrects a retired value) and re-screens the proposition and the topic for prompt-injection — an exfiltration payload the gate quarantined stays quarantined even if a caller passes its id. - Provenance on every read — answers cite where each fact came from
(conversation, document offset, tool call). A
TrustReportexplains how the system knows: chain of custody, declared conflicts, or an explicit abstention. - Bi-temporal history — facts carry both when it happened and when we
learned it. Query the past (
as_of), see transitions ("changed from X to Y on date Z"), and audit every revision. - Abstention by design — on questions the store cannot support, Verimem
says so instead of stitching an answer from the nearest-but-irrelevant facts.
Memory-boundary abstention holds at 1.0 across our end-to-end runs. It is ON
by default on every served surface (gateway/console self-calibrate the floor
per tenant); in the embedded SDK it is one switch away —
explain(..., min_relevance="auto")orENGRAM_MIN_RELEVANCE=auto— left permissive by default so a brand-new, near-empty store doesn't over-abstain while it fills up (the floor is sharpest on real-size corpora). - Document memory with exact citations — index PDF/DOCX/HTML/EPUB/text files; semantic search returns passages with file, version and character offsets; passages can be promoted to memory through the gate, citation attached.
- Consent-first import — bootstrap from your ChatGPT / Claude export: conversations are listed first, nothing is ingested without an explicit selection.
- Opt-in auto-memory —
AutoMemory(memory).observe(role, text)watches a live conversation and remembers on its own, but through the SAME gated pipeline as explicit writes (extraction → gate → provenance). Opt-in by construction: if you don't instantiate it, it doesn't exist. - Trust odometer —
m.trust_stats()/verimem stats: persistent counters of what the gate actually did on your store — writes admitted, quarantined, rejected, and honest read-path abstentions, with per-layer attribution. Observable actions, not marketing claims; no fact text is copied into the counter. - True forget —
delete(purge_history=True)removes the fact and its supersession chain; the deleted data does not resurface through history or time-travel queries. - Per-source trust, two channels (flag-gated) — every writing source earns a reputation from inter-source agreement (consistency) and from how its claims fare in use (outcome); the weaker observed channel decides. Independence clustering collapses copies/colluders of one feed to a single witness, so manufactured consensus cannot self-confirm. Reproduced on a real held-out corpus (HaluEval, 3/3 seeds): a 4-id cartel that self-confirms to 0.90 under naive counting is demolished to 0.20, honest sources restored to 0.95, and the hallucinated answers it pushed drop out of recall entirely.
- Epistemic labels — a fact can carry the kind of guarantee behind it:
proven(a named machine-checkable proof),unbeaten(held up to a declared bound — the bound only grows), orrefuted(a named counterexample, absorbing). "Held to 10^6" and "proven" are never conflated. - Derived knowledge, through the same gate — the composition ring derives
new candidate facts from verified ones (declared substitution patterns),
pushes them through the same admission gate as every other writer, and
admits survivors signed (
actor:composer— engine writes never testify for themselves), traced (derives_fromparents, retractable if a parent falls) and labeled with the exact check that passed. Few but zero-false by construction. Run it one-shot (python -m verimem.compose_daemon --db ..., schedule with cron/Task Scheduler): the daemon refuses to compose when the engine's own writes already dominate the recent stream (self-echo guard-rail). - Read-path guardian — when the store holds a better-guaranteed truth about
the same subject, a read doesn't just abstain: it corrects, citing both
facts (
correct_read→ ACCEPT / CORRECT / ABSTAIN; a refuted fact is never served). Paired with active probes that build the query which would falsify a stored fact — finding independent counter-evidence proposes arefutedlabel, surviving grows itsunbeatenbound — the store falsifies itself instead of waiting for a contradiction to arrive. - Ignorance map — "I don't know" becomes "here is what I'm missing": each unanswerable query is classed (no evidence / below the floor / evidence quarantined / a live conflict) with the concrete source or audit that would answer it — the active complement of abstention.
- Provenance signing (opt-in) — an unforgeable HMAC of who is speaking rides inside each write's provenance ref, complementing the entailment gate's what deserves admission: content authenticity and channel authenticity, the two halves no deterministic content filter alone can certify against an adaptive adversary.
- Local-first — SQLite storage, local embeddings, injectable LLM. Runs
air-gapped (
verimem airgapverifies zero-egress configuration).
pip install verimemfrom datetime import datetime
from verimem import Memory
# No llm needed for the moat. Run `verimem warmup` once first: it downloads the
# multilingual gate model (~656 MB, a public release — no account) that judges
# writes; `verimem doctor` verifies the install. Without a judge, writes are
# admitted WITH an explicit L4-skipped advisory (never silently) and the assert
# below would fail — doctor tells you exactly why.
m = Memory("memory.db")
# THE MOAT, live — the reason Verimem exists. Same source, two writes; works
# with NO llm, in any language (the local CE is the judge):
src = "We migrated the analytics store to Postgres last quarter."
m.add("Analytics runs on Postgres.", source=src) # entailed -> admitted
r = m.add("Analytics runs on MongoDB.", source=src) # confab -> QUARANTINED
assert r["status"] == "quarantined" # stored but OUT of default recall —
# your agent will never repeat it as truth
# Pass an llm for the highest-quality judge (and to extract facts from raw
# conversations); the local CE is the free default when you don't.
m = Memory("memory.db", llm=my_llm) # any client with .complete(system, messages)
# Gate presets: "balanced" (default), "strict" (reject on contradiction or
# failed source-grounding), "permissive" (creative / low-stakes, no quarantine).
m = Memory("memory.db", preset="strict", grounding_llm=my_llm)
# Store a conversation — facts are extracted atomically and pass the gate.
# Extraction from raw dialogue needs the llm; user_name makes the app-provided
# identity the subject of the facts.
m.add([{"role": "user", "content": "I moved to Berlin in March."}],
user_name="Alice")
# Attach PROVENANCE to a fact (no LLM needed). `verified_by` records WHERE the
# claim came from — it is shown on every read and cannot be forged into a higher
# trust status (a self-cited receipt never becomes "verified"; the gate's outcome
# + provenance are the trust signal, not a self-asserted badge).
m.add("Deploy pipeline is green", verified_by=["ci:main:green"])
# Search — optionally with history context or as of a past moment
m.search("where does Alice live?")
m.search("where did Alice live?", as_of=datetime(2024, 1, 1).timestamp())
# Ask HOW the system knows: evidence dossier or an explicit abstention
report = m.explain("where does Alice live?")Add to .mcp.json in your project (or ~/.claude/.mcp.json):
{
"mcpServers": {
"verimem": {
"command": "verimem",
"args": ["mcp"],
"env": { "VERIMEM_HOSTED": "1", "VERIMEM_TOOL_NAMESPACE": "verimem" }
}
}
}This exposes the memory tools (verimem_remember, verimem_facts_recall,
verimem_trust_report, verimem_document_semantic_search, …) to any MCP
client. Drop the VERIMEM_TOOL_NAMESPACE entry to keep the legacy hippo_*
names — both dispatch to the same tools.
Onboarding is automatic: every MCP client receives a usage guide on connect
(the instructions field of the initialize response). For any other
integration, verimem agent-guide prints the same guide — paste it into a
system prompt or CLAUDE.md.
verimem index contract.pdf # index a document for semantic search
verimem search-docs "termination clause" # passages with file + offset citations
verimem import conversations.json # list a ChatGPT/Claude export (imports nothing
# until you pass --ids or --all)
verimem import conversations.json --project verimem --since 2026-06-01 --all-matching
# import a filtered subset (title/date/project)
verimem trust "the deploy is green" --verified-by ci:main:green
verimem airgap # verify a zero-egress CONFIGURATION
verimem airgap --live # PROVE it: audit every socket during a
# real write+search, exit 0 iff no egressThe visual layer exists at every deployment size — single user, team server, SaaS — same page, same guarantees:
verimem console # your OWN local store: browser opens, no keys, no configGET /ui (also served by the team gateway) shows: the trust ring (share
of writes admitted clean) with per-day sparklines, the knowledge graph
(drag, zoom; grounded edges solid, ungrounded dashed red — declared, never
hidden) where clicking a conclusion lights its chain of custody hop by
hop, and the blocked-claims log — every unsupported claim the gate
stopped, auditable. The graph is alive: nodes the engine touches fire and
new ones grow in as you work, straight from /v1/events/flow. It is an honest
window, not the whole store — it shows the most recent entities with the real
edges between them and declares the totals (total_entities, total_edges,
isolated_count), so a node's isolated badge means "no relation anywhere",
never "the sample dropped it". Live: gate events stream over SSE (GET /v1/events), so
you watch the memory working, not a 30s-old photograph. For the engine itself
there is the Live Engine Room (GET /ui/engine, stream
GET /v1/events/flow): the custody line animated by YOUR store's real events
— each write admitted or quarantined, each recall answered or abstained, with
per-tenant privacy (flow metadata only, never fact content). The events are
emitted by the core, so every surface shows up in one panel — SDK, gateway,
and the MCP server used by Claude Code or any other vendor's agent (label
yours with VERIMEM_ACTOR in its MCP config). Same feed in a terminal:
verimem flow tail. Personal mode binds
127.0.0.1 by default — the loopback bind is the real defense; a Host-header
allowlist is a second layer against browser DNS-rebinding, but a direct client
(e.g. curl) can spoof the Host header, so never expose personal mode on a
non-loopback bind. A presented API key always wins. For agents there is GET /v1/snapshot — the whole visible
state (odometer + daily series + quarantine + graph with provenance) in one
structured call: what the console shows a human, shaped for an AI.
Run Verimem as a shared memory server your team hosts — the data never leaves your infrastructure:
verimem gateway keys create --tenant acme --name laptop # key shown once
verimem gateway serve # 127.0.0.1:8377Each tenant gets an isolated store; the tenant is derived from the API key
alone. Endpoints: POST /v1/memories, GET /v1/search, GET /v1/explain
(TrustReport), GET /v1/stats (the tenant's own trust odometer + usage),
GET /v1/quarantine, GET /v1/graph, GET /v1/graph/dossier,
GET /v1/snapshot, GET /v1/events (SSE),
DELETE /v1/memories/{id}?purge_history=true. Open /ui in a browser for
the trust console (or /dashboard for the legacy minimal odometer) — static,
dependency-free pages; your API key stays in the tab and travels only as an
Authorization header. The gateway binds loopback by default — for remote
access put it behind a TLS reverse proxy (nginx/caddy).
Several local agents — Claude Code windows, Cursor, a cron job — should share ONE memory, not each spin up a model-loading store that fights the same SQLite file. Point them at a running server and they become thin clients: no model load, just HTTP.
verimem gateway serve # one server owns the models + store
export VERIMEM_SERVER_URL=http://127.0.0.1:8377
export VERIMEM_SERVER_KEY=vm_... # a tenant key (created above)With those set, the Python SDK (open_memory()), the CLI (verimem remember /
recall), and the MCP tools (hippo_remember / hippo_facts_recall /
hippo_facts_search) all route through the shared server — a session behind it
never loads a model. If the server is unreachable, each falls back to its own
embedded store (fail-soft, never a crash). Writes are idempotent (a retried
cold-start write is de-duplicated). Per-user scoped ops
(user_id/agent_id/run_id) stay local for isolation.
Docker (embedding models baked in — runs fully offline):
docker compose -f docker-compose.gateway.yml up -d --buildTypeScript client (sdk/typescript) — typed, zero-dependency, contract-tested against the live gateway from the Python suite:
const memory = new VerimemClient({ baseUrl, apiKey });
await memory.add("deploy is green", { verifiedBy: ["ci:main:green"] });Consistent hot backups (SQLite online backup API — correct while serving):
verimem gateway backup ./snap-2026-07-08 # keys + every tenant store + manifest
verimem gateway restore ./snap-2026-07-08 ./new-data-dirMeasured on HaluMem with the full pipeline (our extraction → gated store → answer), judged by a Claude-based grader. Full methodology, caveats and raw result files: BENCHMARKS.md.
| Metric | Verimem | MemOS (self-reported) |
|---|---|---|
| End-to-end QA, same-recipe cluster (7 full runs, n=188) | 0.66–0.68 (mean 0.667, n=3 clean) | 0.672 |
| End-to-end QA, cross-user generalization (never-seen user, n=169) | 0.716 | — |
| Read-path QA (gold store, 3 users) | 0.739 / 0.750 / 0.787 | — |
| Memory-boundary abstention (end-to-end) | 1.000 — seven consecutive full runs | — |
| Extraction F1 (58 sessions, replicated ×2) | 0.761–0.768 | 0.797 |
We describe the end-to-end result as parity, not a win: the same-recipe runs cluster around MemOS's self-reported number and the judges differ (ours vs theirs). Trust properties hold through the full pipeline. On TrustMem-Bench — six deterministic trust axes (fabrication under absence, destructive updates, temporal integrity, forget integrity, provenance honesty, sycophancy resistance) — Verimem scores 60/60; the bench is offline and seeded, run it yourself in one command.
Scale: recall latency stays ~flat with the optional ANN index
(pip install "verimem[ann]"): 1.3 ms at 1M facts vs 81 ms brute-force. With
faiss installed it auto-enables above 100k facts (ENGRAM_ANN_RECALL=0 opts
out); the default install ships no faiss, so recall is exact brute-force. See
SCALE.md for the table + the honest caveats: the ANN is
approximate, and on the random-vector stress bench its recall-in-pool
degrades with corpus size — 0.87 @100k, 0.53 @500k, 0.41 @1M (clustered
real-embedding corpora measure far higher — ~1.0 at oversample 8 at prototype
scale — and raising the oversample recovers recall at some latency); the 1M
build also needs a large-RAM box.
Accuracy benchmarks measure how often a memory system answers correctly. They do not measure what happens when it cannot know — and that failure mode is exactly what makes memory systems risky in serious applications. This is where Verimem is structurally different, and every row below is a measured result with the raw file in the repo, not a design intention:
| Capability | Verimem (measured) | mem0 / Zep / MemOS |
|---|---|---|
| Abstains instead of fabricating when the store can't support an answer | 1.000 across seven consecutive full e2e runs | not measured by their leaderboards |
| Write-path gate (unsupported "it works" claims quarantined, not stored) | grounding judge AUROC 0.96–0.97 across models/seeds (0.971 sonnet-4 R10, 0.963 sonnet-5 re-run 2026-07-16, 0.974 pooled multi-model) | no write gate |
Conflicting well-grounded memories resolved by provenance, or an honest abstention (answer, trust-conditioned) |
correct 0.17 → 0.92, abstains 2/2 on unresolvable conflicts (bench, sonnet-5) | served as-is |
| Trust axes under adversarial pressure (TrustMem-Bench, deterministic, run it yourself) | 60/60 | mem0: 40/60 (forget-leak reproduced live) |
Bi-temporal history & time travel (as_of, "changed from X to Y on date Z") |
shipped, tested | latest-value only |
| True forget (GDPR): deleted data cannot resurface via history or time travel | shipped, probe-tested | mem0 leaked in our probe |
| Provenance on every read (who wrote it, source ref, gate status) | every hit | absent or partial |
| Runs fully air-gapped (local embeddings, injectable LLM, zero egress check) | verimem airgap |
cloud-first |
Our method is the other differentiator: every claim in this README links to a raw result file, negative results are published (see the declared regressions and falsified hypotheses in BENCHMARKS.md), and the honest framing rule — "parity, not a win" — is enforced against ourselves. A memory layer asking for your trust should be able to show its work. This one does.
conversations / documents / tool results
│ atomic extraction (subject-named, date-attached)
▼
admission gate ── quarantines unsupported claims (contradictions: strict mode)
▼
bi-temporal store (SQLite) ── facts + provenance + supersession chains
│
├─ semantic recall (local embeddings + ANN, optional reranker)
├─ history / as-of / transition context
└─ TrustReport: evidence dossier or explicit abstention
The Python package is verimem — one product, one name (total rename, 0.6.0).
import engram and import hippoagent still work as compatibility aliases
(same module objects, no duplicated state), and so do all three env prefixes:
every VERIMEM_X setting can also be written ENGRAM_X/HIPPO_X (mirrored at
import, explicit values never overridden). Existing ~/.engram data stores
keep working untouched; new installs default to ~/.verimem.
Dual-licensed: AGPL-3.0 for open source use, with a commercial license available for proprietary or closed-SaaS deployments — see LICENSING.md. Versions 0.3.x and earlier remain MIT.
Issues and PRs welcome — see CONTRIBUTING.md. Development setup:
git clone https://github.com/aureliocpr-ctrl/verimem && cd verimem
pip install -e ".[dev]"
pytest -q