Papers › DMF: A Deterministic Memory Framework for Conversational AI Agents

DMF: A Deterministic Memory Framework for Conversational AI Agents

2 Jun 2026arXiv:2606.03463added by Syntology

Matteo Stabile, Enrico Zimuel

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

Conversational AI agents require memory systems that are both scalable and semantically coherent across long interaction horizons. Existing approaches rely predominantly on large language model (LLM)-based summarisation at write time, which introduces non-determinism, escalating token costs, and opacity in pruning decisions. We present the Deterministic Memory Framework (DMF), a CPU-first approach that replaces generative memory compression with a fully deterministic pipeline grounded in classical NLP analysis, vector geometry, and mathematical scoring. DMF assigns each conversational interaction a Survival Score Ω computed from deterministic content signals, conversational cues, and structured provenance, combined through a logistic projection. An interaction-count decay law, denoted as Ω_(eff)(Δn), governs how relevance evolves as new turns arrive, where Δn is the number of newer interactions rather than wall-clock time, preserving full determinism. We present the mathematical formulation of DMF, its structured recall pipeline, the pruning decision procedure, and the evaluation protocol. Experiments are conducted on a purpose-built benchmark using the LoCoMo and LongMemEval datasets. We compare DMF against Mem0, a popular memory layer for AI agents. DMF achieves comparable accuracy while using zero tokens to prepare the memory context and 5x to 242x fewer tokens over the entire conversation. These results show that it is possible to eliminate LLM calls from the memory-management loop, reducing token costs to nearly zero and enabling deterministic memory systems for conversational AI agents.

PaperPDFCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2606.03463")

Code

Syntology Ran 19 of 19 code samples harvested from 1 repository linked to this paper; 0 have no recorded run. Of those that ran: 19 ran with no contract checked.

By repository: found in paper text by Syntology: 19 samples from 1 repository, 19 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

matstech/dmf-benchmarks found in paper text by Syntology report

Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

19 samples harvested; 19 ran; 0 honoured the contract we drafted; 0 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

19ran

Licence: 0 of the 19 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from matstech/dmf-benchmarks. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

build_answerer_user_prompt matstech/dmf-benchmarks/dmf_bench/benchmarks/locomo/prompts.py found in paper text by Syntology ran MIT (permissive) · 340bde46c69a75fb · report
category_name matstech/dmf-benchmarks/dmf_bench/benchmarks/locomo/questions.py found in paper text by Syntology ran fingerprinted MIT (permissive) · 428bea11a75a56e8 · report
conversation_unit_id matstech/dmf-benchmarks/dmf_bench/benchmarks/locomo/adapter.py found in paper text by Syntology ran fingerprinted MIT (permissive) · b876e5700698ca84 · report
exact_match matstech/dmf-benchmarks/dmf_bench/benchmarks/locomo/rigorous.py found in paper text by Syntology ran fingerprinted MIT (permissive) · 6aea303b6aec6c67 · report
load_dataset matstech/dmf-benchmarks/dmf_bench/benchmarks/longmemeval/dataset.py found in paper text by Syntology ran MIT (permissive) · 73cba72603aa228a · report
normalize_category_5_prediction matstech/dmf-benchmarks/dmf_bench/benchmarks/locomo/prompts.py found in paper text by Syntology ran fingerprinted MIT (permissive) · 64c55dcb60229eb9 · report
normalize_locomo_turn matstech/dmf-benchmarks/dmf_bench/benchmarks/locomo/dataset.py found in paper text by Syntology ran MIT (permissive) · 11bfecc717880f84 · report
normalize_text matstech/dmf-benchmarks/dmf_bench/benchmarks/locomo/rigorous.py found in paper text by Syntology ran fingerprinted MIT (permissive) · ae71bb9ba2af46bf · report
normalized_tokens matstech/dmf-benchmarks/dmf_bench/benchmarks/locomo/rigorous.py found in paper text by Syntology ran fingerprinted MIT (permissive) · 20b3d8cf23b0d87c · report
official_ground_truth_answer matstech/dmf-benchmarks/dmf_bench/benchmarks/locomo/prompts.py found in paper text by Syntology ran fingerprinted MIT (permissive) · 0174084e67c613d1 · report
parse_judge_response matstech/dmf-benchmarks/dmf_bench/benchmarks/locomo/judge.py found in paper text by Syntology ran MIT (permissive) · c268d1b34b72988e · report
parse_locomo_date matstech/dmf-benchmarks/dmf_bench/benchmarks/locomo/dataset.py found in paper text by Syntology ran MIT (permissive) · f902c4ca0121dbe1 · report
parse_longmemeval_date matstech/dmf-benchmarks/dmf_bench/benchmarks/longmemeval/dataset.py found in paper text by Syntology ran fingerprinted MIT (permissive) · 565e4cb5d95611bb · report
parse_longmemeval_date_human matstech/dmf-benchmarks/dmf_bench/benchmarks/longmemeval/dataset.py found in paper text by Syntology ran fingerprinted MIT (permissive) · 2fb4d363847e5b3f · report
precision_at_k matstech/dmf-benchmarks/dmf_bench/benchmarks/locomo/ablation.py found in paper text by Syntology ran MIT (permissive) · 1c147c09654b3caa · report
question_id matstech/dmf-benchmarks/dmf_bench/benchmarks/locomo/adapter.py found in paper text by Syntology ran MIT (permissive) · 002ac560607595f7 · report
recall_at_k matstech/dmf-benchmarks/dmf_bench/benchmarks/locomo/ablation.py found in paper text by Syntology ran MIT (permissive) · 20a53bb137695e55 · report
reciprocal_rank matstech/dmf-benchmarks/dmf_bench/benchmarks/locomo/ablation.py found in paper text by Syntology ran MIT (permissive) · 939c1d4e6225165a · report
serialize_locomo_turn_for_dmf matstech/dmf-benchmarks/dmf_bench/benchmarks/locomo/dataset.py found in paper text by Syntology ran MIT (permissive) · 1e282bca38ed5dc9 · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2606.03463, was issued in June 2026, after that date, so the archive has no leaderboard rows for it.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections