cortexm
Deterministic agent memory. μ=0. Free, local, forever. Same result every time.
cortexm remembers what you tell it. Forever. For free. On your machine. Same result every time.
Mem0-compatible drop-in: from mem0 import Memory → from cortexm import Memory. Zero LLM calls at ingest. Zero LLM calls at retrieval. Zero monthly cost. Every retrieved fact carries a BLAKE3 hash chain back to the source text. One .db file you own.
Quick start
pip install cortexm # works offline, no API keys, single command
from cortexm import Memory # Mem0-compatible surface
m = Memory()
m.add("I work at Google", user_id="alice")
m.search("Where does Alice work?", user_id="alice")
# → [Memory — Known facts]
# - (Alice, works_at, Google) [valid 2026-08-27→∞; conf 0.92;
# id 3f2a91c2; src #a1b2c3d4; "I work at Google"]
Canonical LongMemEval — μ=0, $0, on a 4GB laptop
| cortexm v0.6.4 (measured, clean) | MemPalace (honest E2E) | |
|---|---|---|
| canonical LongMemEval (500-Q full corpus) | 95.8% (479/500) | ~96.6% (retrieval-only, no QA) |
| single_session | 95.51% | — |
| knowledge_update | 98.72% | — |
| multi_session | 94.74% | — |
| temporal_reasoning | 95.49% | — |
| LLM calls (ingest + retrieval + judge) | 0 | 0 |
| monthly cost | $0 | $0 |
| determinism | byte-exact across 3× runs | byte-exact |
| owns your data | ✓ single .db file |
✓ |
Full 500-question results — v0.6.4, the first full-corpus run that actually completed.
Honesty correction #1 (v0.6.4): the v0.6.2 README claimed 97.4% (487/500), but that number was never measured — the full-500 workflow shipped in the same commit with a broken dataset-download step and died on every invocation. The real slices from that era scored 0.943.
Honesty correction #2 (v0.6.5): the v0.6.4 README claimed 94.4% (472/500) — that number was contaminated. The aggregate step globbed
benchmarks/results/canonical_slice_*.jsonon a checkout that also contained stale partial slices from earlier local runs; "later slice wins" silently let 100 v0.6.3-era results override fresh v0.6.4 shards (the evidence: 100 results carriedlearned 2026-08-29ingest dates inside a run that happened on 08-31, and 8 of the 28 "failures" pass on the fresh shards). Re-aggregated from the five real shard artifacts only: 0.958 (479/500). v0.6.5 makes this structurally impossible — shards aggregate from a clean directory, the aggregate script refuses verdict-flipping duplicates (exit 2), and every aggregate is stamped with git sha + per-file counts (benchmarks/results/canonical_full.json→aggregate_provenance).
| Subtask | Score | Notes |
|---|---|---|
| Overall (clean aggregate) | 0.958 (479/500) | 21 real failures, all diagnosed and fixed in v0.6.5 (below) |
| knowledge_update | 0.9872 | 1 failure |
| temporal_reasoning | 0.9549 | 6 failures on relative-time anchors |
| single_session | 0.9551 | 7 failures on assistant-reply recall |
| multi_session | 0.9474 | 7 failures on sum/difference derivation |
What the 21 failures taught us (v0.6.5 — all boring fixes, Pareto-first)
Every one of the 21 real failures was reproduced, root-caused, and fixed with the boring mechanism — no new models, no embedder swap, nothing dropped:
- Assistant messages were truncated at 800 chars — segment them instead. 7 single_session answers ("Veja", "Absinthe", "Nu, pogodi!", "@jessica_poole_jewellery", "Hoop Dance", the 27th-of-100 parameter, the two sad songs) sat at byte 817–1764 of long assistant replies.
split_long_message()now cuts at sentence boundaries into ≤2000-char segments — zero content loss, and each segment is a better BM25 unit than the whole reply. - Relative-time questions need calendar math, not vocabulary. "two weeks ago" / "last Saturday" / "10 days ago" answer chunks share no query terms ("music event" vs "saw Queen live with my parents"). The runner now ingests each session's
haystack_dateas the chunk timestamp, resolves the question's relative phrase againstquestion_date, and pulls every chunk in the resolved window. 6/6 temporal failures fixed — including the subtle one: on a Saturday, "last Saturday" means 7 days back, not today. - "How much did I save?" is a difference, not a sum.
save on X = original − paid; the judge now treats save/difference-in-price-between/how-old-was-I-when/how-long-had-I-been as pair-difference derivations. Word-number answers ("Two months", "three") parse too. - The subset-sum judge dropped the real summands. Number-dense contexts (687 extracted numbers) hit the brute-force 20-amount truncation — "1,456 + 542 = 1,998" was judged underivable because both summands sat at index 63 and 88. Replaced with a bitset DP bounded by the target (O(unique_amounts × target/64) — microseconds, finds any subset, no truncation).
- Markdown escapes broke literal matching. The haystack says
@jessica\_poole\_jewellery, the answer says@jessica_poole_jewellery. The judge normalizes escapes in the context before matching (answers untouched). - Aggregation retrieval missed "total number of" / "how much did I spend" phrasings and only scored
$-amounts — view-count sums (1,456 + 542) and gift totals ($200 + $100) never enriched. Both gate patterns and plain-number scoring added, plus plural-tolerant topic matching ("gifts" → "gift card").
Verification: all 21 failures re-run through the exact production runner path (_run_one_question, fresh per-question DB) — 21/21 pass locally. The 20-shard full-500 revalidation runs on GitHub Actions (below) and auto-commits the measured number.
Run the full 500-Q benchmark via GitHub Actions: .github/workflows/longmemeval_canonical_full.yml — 20 shards × 25 questions in parallel (the v0.6.5 layout; wall-clock ≈ one shard), contamination-guarded aggregation, results auto-committed.
How cortexm compares (search-momentum table, honest numbers)
VoiceMem (xzf-thu/VoiceMem, Aug 2026) popularized the side-by-side memory-system comparison. We borrowed the format — every competitor number below is quoted from their README/tech report, our numbers are measured, and the benchmarks are different, so rows are labeled, not conflated:
| cortexm v0.6.5 | VoiceMem v0.0.1 | Mem0 | |
|---|---|---|---|
| memory benchmark | LongMemEval-S, 500-Q full corpus: 95.8% (μ=0, deterministic judge) | LoCoMo 91.2% (top-5, LLM-judged) | LoCoMo 61.68% (top-200, as reported by VoiceMem) |
| LLM calls at ingest | 0 (μ=0 deterministic extractor) | OpenAI API required for extraction | LLM extractor required |
| retrieval | local, deterministic | local | cloud or local |
| retrieval latency (p50, warmed corpus) | ~50 ms on a 636-message corpus, 2-CPU VM (1.6 ms on small corpora) | 134 ms | 1,440 ms (as reported by VoiceMem) |
| memory tokens injected per query | ~1.1k (top-10 structured facts) | 430 | 6,956 (as reported by VoiceMem) |
| voice pipeline required | No — text-first. Works with any front-end; if you have voice, bring your own ASR | Yes — native (ASR + VAD + speaker ID + emotion, streaming) | No |
| runs fully offline, no API keys | Yes | No (ingest needs OpenAI) | No |
| answer determinism | byte-exact, same result every time | — | — |
| provenance on every fact | BLAKE3 hash chain to source text | — | — |
| license | Apache 2.0 | Apache 2.0 | Apache 2.0 |
Why no voice? VoiceMem's pitch is memory for voice agents — it owns the ASR, voiceprint, scene, and emotion stack. cortexm's pitch is memory as a substrate: it's voice-agnostic and modality-agnostic by design. You don't need to route your users' audio through a memory system to get long-term recall — paste the transcript (or the ASR of your choice) and the trace/VSA/verbatim tiers do the remembering. If you're building a real-time voice agent and want memory co-located with the VAD loop, VoiceMem is the specialized tool; if you want deterministic, auditable memory under any front-end — text today, voice tomorrow, whatever comes next — that's this.
Known boundaries (the short list)
Full detail:
docs/FAILURE_MODES.md— every failure tied to a public benchmark question.
- The extractor is a 61-pattern lookup, not a language model. Phrasings outside the pattern library are silently dropped at ingest (e.g. "Anna has a cat named Whiskers") — they remain retrievable via verbatim/BM25 chunk recall, but never become structured facts. This is the price of μ=0: no generativity, no fabrication, no drift.
- ZK proofs are trusted-prover attestations. The v0.6.4 backend (Pedersen + Sigma protocols on secp256k1) is sound at the commitment layer — challenges are bound to announcements, both OR-proof branches verify, H has no known discrete log, thresholds are enforced — but the linkage between committed values and store rows is established at prove-time by the prover. Verify the integration layer before trusting it against a malicious host.
- Set membership reveals the leaf index. The value stays hidden (random-blinding Pedersen + equality proof); the position in the set does not. Position-hiding needs a ZK-friendly Merkle construction — documented future work.
- No cross-user inference, ever. Every fact is scoped by
user_id; the scope sandbox turns empty scopes into empty results (not unrestricted fallbacks). This is a feature, and it also means no "insight across users" stories. - Compression tiers are documented, not default. int8/binary quantization trade recall for space (see
docs/COMPRESSION.md); the default build keeps full-precision embeddings because the benchmark headroom doesn't justify the loss yet. - Judge coverage is rule-based. The deterministic judge answers via strategy dispatch (bool/list/nugget/sum_or_diff/percentage/numeric_agg/holiday/paren). Questions outside those strategies score 0 even when retrieval succeeded — the failure is honest, the number is real.
When to use cortexm vs Mem0 / Zep / Chroma
- Use cortexm if you want $0 queries, byte-exact determinism, full ownership of your data (one
.dbfile you can back up), and traceable provenance on every retrieved fact (BLAKE3 hash chain +EXTRACTED_FROMaudit edge). - Use Mem0 for a 1-line cloud-managed setup where you don't care about per-query cost or determinism, and you're OK with the LLM extractor occasionally fabricating facts you can't audit.
- Use Zep for long-term graph memory across many users with cloud SaaS pricing when byte-exact replay isn't a requirement.
- Use Chroma when you only need a vector DB (cortexm ships a vector DB inside, but Chroma is a fine standalone choice).
Drop-in plugins (already shipped)
- Mem0-compatible surface:
from cortexm import Memory— drop-in forfrom mem0 import Memory - LangChain:
plugins/langchain→context-m-langchainon PyPI - LlamaIndex:
plugins/llamaindex→ postprocessor - OpenAI Agents SDK:
plugins/openai_agents - Claude Code:
plugins/context-m-claude— session lifecycle hooks - MCP server:
cortexm serve(stdio JSON-RPC, zero extra dependencies) - REST server:
cortexm serve-rest— OpenAPI 3.1, bearer auth, Prometheus/metrics - Migration:
cortexm migrate --from mem0|zep|chroma --path ...
Documentation
The README is intentionally short. Everything else lives in docs/:
| Doc | What's in it |
|---|---|
docs/ARCHITECTURE.md |
Layer 1 Symbolic Trace + Layer 2 VSA Palace + μ=0 Bridge in detail |
docs/BENCHMARKS.md |
Full Tier 1-4 results: OOD, in-distribution, real-GitHub, canonical LongMemEval |
docs/METHODOLOGY.md |
How every headline number was measured + honest scope |
docs/FAILURE_MODES.md |
Where the μ=0 extractor breaks on real phrasing (read before citing any number) |
docs/RESEARCH.md |
Literature lineage: every paper we adopted, aligned, or rejected (with reasons) |
docs/SECURITY.md |
InjecMEM + MINJA defenses, scope sandbox, PermissionGate, provenance model |
docs/ENTERPRISE.md |
PII firewall, encryption at rest, RBAC, audit, GDPR, backup/DR, REST API |
docs/DEPLOYMENT.md |
SDK / MCP / REST / Docker / K8s / Helm runbooks |
docs/COMPRESSION.md |
Storage tiers (int8 / binary / rabitq / pq) + measured trade-offs |
docs/ROADMAP.md |
Phase status vs the strategic plan |
docs/GOVERNANCE.md |
Foundation governance + licensing commitments |
docs/PLAYBOOK_v2.md |
Migration playbook from Mem0 / Zep / Chroma |
Examples & tests
examples/— runnable scripts, offline, no API keys (01_quickstart → 20_agent_session)tests/— 733 tests: fabric + enterprise + PPR + concurrency + sandbox + enrichment + WAL crash-recovery + migration + CRDT federation + Rust parity + ZK soundness/forgery + public-API smokecortexm/experimental/— deterministic research borrows (graph recall, coherence) — μ=0 or it doesn't shipleaderboard/— self-hosted benchmark site (rebuild:python leaderboard/build.py; openleaderboard/index.html)AGENTS.md— how AI coding agents should interact with this repo (2026 standard)CONTRIBUTING.md— contribution guide
License
Apache 2.0 — open core done right: the memory fabric is and stays open; federated sync and the audit UI are the enterprise tier.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cortexm-0.6.5.tar.gz.
File metadata
- Download URL: cortexm-0.6.5.tar.gz
- Upload date:
- Size: 563.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6da3a8651d87c872c8b3c99b7399709e4b548a9af81e08de32cdcfbc29cb90c5
|
|
| MD5 |
ef9ef0d34f0dfcb431239770c03d9485
|
|
| BLAKE2b-256 |
e8d3a1dbd4dd38f279fe155be08455a32000a40919cac6207e0cabfb4e23d3c5
|
Provenance
The following attestation bundles were made for cortexm-0.6.5.tar.gz:
Publisher:
release.yml on ssmurfgg04-gif/context-m
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cortexm-0.6.5.tar.gz -
Subject digest:
6da3a8651d87c872c8b3c99b7399709e4b548a9af81e08de32cdcfbc29cb90c5 - Sigstore transparency entry: 2663175700
- Sigstore integration time:
-
Permalink:
ssmurfgg04-gif/context-m@8153c0ef84b480c5e741690db046ee2673c0f709 -
Branch / Tag:
refs/tags/v0.6.5 - Owner: https://github.com/ssmurfgg04-gif
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@8153c0ef84b480c5e741690db046ee2673c0f709 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cortexm-0.6.5-py3-none-any.whl.
File metadata
- Download URL: cortexm-0.6.5-py3-none-any.whl
- Upload date:
- Size: 507.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0c6476f0caa9bd453824836c3d4f20ddb6f6149b047731a2df9dc52e7e4c830
|
|
| MD5 |
761c1e32f37f4137a2e5dcb6d9f892b8
|
|
| BLAKE2b-256 |
06a3faad5c0d5299c3598fe1265b0b068be6137d46823f842f56c65019313ee8
|
Provenance
The following attestation bundles were made for cortexm-0.6.5-py3-none-any.whl:
Publisher:
release.yml on ssmurfgg04-gif/context-m
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cortexm-0.6.5-py3-none-any.whl -
Subject digest:
d0c6476f0caa9bd453824836c3d4f20ddb6f6149b047731a2df9dc52e7e4c830 - Sigstore transparency entry: 2663175756
- Sigstore integration time:
-
Permalink:
ssmurfgg04-gif/context-m@8153c0ef84b480c5e741690db046ee2673c0f709 -
Branch / Tag:
refs/tags/v0.6.5 - Owner: https://github.com/ssmurfgg04-gif
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@8153c0ef84b480c5e741690db046ee2673c0f709 -
Trigger Event:
push
-
Statement type: