This page is the stable entrypoint for AIppocampus LongMemEval work. It keeps dataset provenance, commands, current metrics, and claim boundaries together so a benchmark run remains visible after the raw report stays local.
LongMemEval is an external public benchmark for long-term interactive memory. AIppocampus has a deterministic retrieval-only adapter for the official cleaned V1 files, plus a separate fixed-reader answer/latency harness. The retrieval adapter checks whether the expected answer session and source lines are retrievable. The answer harness can send only bounded retrieved source lines to an opt-in reader, then scores the reader locally with a deterministic diagnostic judge. It is not the official LongMemEval evaluator. LongMemEval-V2 is tracked separately. The context-gathering mapping pilot can inspect the public V2 schema and local files, but it cannot report source-evidence R@K/MRR. #1155 chooses a tiny official answer/latency pilot as the next valid V2 route: use the upstream Insert/Query harness, a fixed reader and evaluator, and sanitized local-only artifacts before any full V2 run or answer-quality claim.
Use this page to answer:
- Which LongMemEval split was run?
- Which exact dataset file and checksum were used?
- Which command reproduced the result?
- Which retrieval metrics can be claimed, and which QA claims stay out of bounds?
Do not use this page to claim SOTA, official LongMemEval answer quality, LongMemEval-V2 quality, or broad memory superiority from one retrieval, answer-harness, or mapping run.
- Paper: https://arxiv.org/abs/2410.10813
- Repository: https://github.com/xiaowu0162/LongMemEval
- Cleaned dataset: https://huggingface.co/datasets/xiaowu0162/longmemeval-cleaned
- V2 paper: https://arxiv.org/abs/2605.12493
- V2 repository: https://github.com/xiaowu0162/LongMemEval-V2
- V2 dataset: https://huggingface.co/datasets/xiaowu0162/longmemeval-v2
- Local manifest:
benchmark_corpus/longmemeval_manifest.json
The runner pins Hugging Face LFS content SHA-256 values, not the HTTP ETag
header shown by the resolved download URL. The LFS oid is the value that
matches the downloaded file hash.
| Runner split | File | Bytes | LFS content SHA-256 | Intended use |
|---|---|---|---|---|
longmemeval-v1-oracle |
longmemeval_oracle.json |
15,388,478 | 821a2034d219ab45846873dd14c14f12cfe7776e73527a483f9dac095d38620c |
Small smoke and oracle-evidence debugging. |
longmemeval-v1-small |
longmemeval_s_cleaned.json |
277,383,467 | d6f21ea9d60a0d56f34a05b609c79c88a451d2ae03597821ea3d5a9678c3a442 |
First comparable public split. |
longmemeval-v1-medium |
longmemeval_m_cleaned.json |
2,737,100,077 | 9d79e5524794a2e6900a3aa9cb7d9152c5a3e8319c9a87c25494ba1eacee495f |
Large-context stress split. |
LongMemEval-V2 is a separate agentic-context benchmark. The public V2 documentation describes an Insert/Query memory API that returns compact multimodal context for a fixed reader, and reports answer accuracy plus query latency. AIppocampus keeps that surface separate from the V1 source-evidence adapter.
The V2 pilot runner is:
python benchmarks\aippocampus\benchmark_longmemeval_v2_context.py --case-limit 5 --output .tmp\longmemeval-v2-context-mapping.jsonLocal V2 JSONL files stay ignored under benchmark_corpus/longmemeval/.
The runner emits only aggregate counts, local path hashes, checksums, hashed
case ids, and claim boundaries; it excludes raw question text, answers,
trajectory goals, UI accessibility trees, actions, thoughts, URLs, and
screenshot paths.
Current local pilot, run on 2026-06-03:
| File | Bytes | SHA-256 |
|---|---|---|
v2_questions.jsonl |
286,186 | 0a3ae5ebea938c24d7800e1e0b0828e08ae1646f939a53853b2b8cdc08e292b7 |
v2_trajectories.jsonl |
1,195,604,539 | 363cec9a8e87aa8d9101ce4e600aadbf7031d674056ebe4f969e8424abc5f3c6 |
| Metric | Value |
|---|---|
| Questions | 451 |
| Trajectories | 1,870 |
| Exact question/trajectory id matches | 0 |
| Environment candidate coverage | 451 / 451 |
| Ambiguous environment candidate pools | 451 / 451 |
| Question rows with gold evidence refs | 0 |
| Trajectory rows with gold question/evidence refs | 0 |
Decision: V2 can support a diagnostic context candidate-pack pilot because
every question maps to a broad domain/environment trajectory pool. It cannot
currently support benchmark-grade context-gathering scores, source-evidence
R@K/MRR, or answer-generation quality inside AIppocampus without upstream
question-to-haystack/evidence-state labels and the official reader/evaluator
harness. Missing fields are gold_trajectory_ids or haystack_ids per
question, evidence state indices or source spans, and source ids that can be
used for grading without leaking answers.
#1155 keeps the V2 source-evidence decision above, but moves the valid answer route toward a tiny official-harness pilot rather than another V1-style retrieval metric. The decision runner is:
python benchmarks\aippocampus\benchmark_longmemeval_v2_official_pilot.py --json --output benchmark_corpus\reports\longmemeval-v2-official-pilot-decision.jsonCLI stdout is static; use --output for the sanitized decision report. The
report records the official harness contract, the local AIppocampus
aippocampus_context_provider adapter contract, fixed reader/evaluator
settings, latency and cost budgets, artifact redaction policy, and the metric
separation that a later pilot must preserve.
The pilot path is deliberately small:
- default
10questions, hard maximum20without a new issue; - ignored local official checkout and ignored V2 data/output directories;
- fixed reader model/base URL/API-key env and fixed evaluator model/reasoning effort before a run starts;
- reports separate memory-context telemetry, answer accuracy, reader/evaluator dependency, and memory-query latency;
- no raw questions, answers, trajectory text, screenshots, URLs, local paths, raw reader responses, or credentials in AIppocampus reports.
benchmarks/aippocampus/adapters/longmemeval_v2_aippocampus_adapter.py provides the
minimal text-only Memory adapter shape for that pilot. The official harness
registers memory backends from its own memory_modules package, so a real
pilot should copy or import the adapter inside an ignored official checkout
instead of vendoring the official repository here. The adapter can return raw
trajectory-derived text to the official reader inside the local run workspace;
AIppocampus should publish only sanitized aggregate decision/report notes.
This closes the decision question, not the score. Do not cite the decision report, adapter contract, context-mapping pilot, or a tiny dry run as LongMemEval-V2 answer accuracy, LAFS, leaderboard readiness, SOTA, or broad memory superiority.
Let the dedicated runner download and verify a pinned split:
python benchmarks\aippocampus\benchmark_longmemeval.py --split longmemeval-v1-oracle --download --questions 50 --min-questions 20 --top-k 10 --output benchmark_corpus\reports\longmemeval-v1-oracle-retrieval-50.jsonRun the comparable LongMemEval-S retrieval slice after the S file is available:
python benchmarks\aippocampus\benchmark_longmemeval.py --split longmemeval-v1-small --download --questions 50 --min-questions 20 --top-k 10 --output benchmark_corpus\reports\longmemeval-v1-small-retrieval-50.jsonRun the current larger LongMemEval-S retrieval slice:
python benchmarks\aippocampus\benchmark_longmemeval.py --split longmemeval-v1-small --download --questions 100 --min-questions 100 --top-k 10 --output benchmark_corpus\reports\longmemeval-v1-small-retrieval-100.jsonFor a larger local diagnostic, treat runtime as exploratory until a dated report exists. Keep progress and checkpoint output enabled so a stopped run still leaves a sanitized partial diagnostic instead of disappearing silently:
python benchmarks\aippocampus\benchmark_longmemeval.py --split longmemeval-v1-small --download --questions 500 --min-questions 100 --top-k 10 --progress-every 25 --partial-output benchmark_corpus\reports\longmemeval-v1-small-retrieval-500.partial.json --output benchmark_corpus\reports\longmemeval-v1-small-retrieval-500.jsonRun the optional local exact-line reranker diagnostic. This is not the default retrieval-only row; it measures whether source-window-visible lines can be promoted without using answer labels or an external model:
python benchmarks\aippocampus\benchmark_longmemeval.py --split longmemeval-v1-small --download --questions 500 --min-questions 100 --top-k 10 --line-reranker lexical --line-reranker-workers 8 --progress-every 50 --partial-output benchmark_corpus\reports\longmemeval-v1-small-lexical-500.partial.json --output benchmark_corpus\reports\longmemeval-v1-small-lexical-500.jsonRun the optional LLM exact-line reranker pilot. This sends the public benchmark
question text and bounded candidate source-line text to the configured external
chat provider, but it withholds gold answers, expected lines/sessions,
has_answer labels, judge labels, miss taxonomy, and raw report cases. The
report records the provider, model, prompt version, candidate pool, token
usage, cache telemetry, latency, and failures; provider dollar cost is not
reported by the chat-completions response:
python benchmarks\aippocampus\benchmark_longmemeval.py --split longmemeval-v1-small --download --questions 25 --min-questions 25 --top-k 10 --line-reranker semantic --line-reranker-workers 1 --line-reranker-timeout 30 --progress-every 5 --output benchmark_corpus\reports\longmemeval-v1-small-semantic-pilot-25.jsonProvider-backed reranker runs are opt-in live benchmark runs. They must declare
a case cap, per-case timeout, provider-call cap, token/cost budget or explicit
--provider-cost-unknown, a provider-budget checkpoint path, and a sanitized
partial-output path before the runner will call the provider:
python benchmarks\aippocampus\benchmark_longmemeval.py --split longmemeval-v1-small --download --questions 25 --min-questions 25 --top-k 10 --line-reranker semantic --line-reranker-workers 1 --line-reranker-timeout 30 --progress-every 5 --max-provider-calls 25 --max-provider-total-tokens 300000 --provider-cost-unknown --provider-budget-checkpoint benchmark_corpus\reports\longmemeval-v1-small-semantic-pilot-25.budget.json --partial-output benchmark_corpus\reports\longmemeval-v1-small-semantic-pilot-25.partial.json --output benchmark_corpus\reports\longmemeval-v1-small-semantic-pilot-25.jsonUse the same controls for a reviewed 50-question run, with --questions 50,
--min-questions 50, --max-provider-calls 50, a reviewed token or dollar
ceiling, and distinct budget/partial/output paths. A 500-question provider
sweep requires explicit operator approval before launch: confirm the provider
cost model or acknowledge cost_unknown with a hard token/call cap, review the
external candidate-source-text privacy boundary, keep checkpoint and partial
outputs gitignored, and record the stop reason and budget summary in the final
report. Deterministic retrieval and lexical reranker commands do not require
provider credentials and remain CI/benchmark-smoke safe.
Analyze a generated semantic reranker report without re-running the provider call. This emits only aggregate ladder/taxonomy/projection fields and keeps the input report path local:
python benchmarks\aippocampus\benchmark_longmemeval_rerank_analysis.py --report benchmark_corpus\reports\longmemeval-v1-small-semantic-pilot-25.json --jsonThe analysis report also carries the #1327 source-window coverage diagnostic:
source_window_coverage_diagnostic.fused_miss_countcandidate_missing_miss_countversusreranker_visible_miss_count- miss families such as
same_session_wrong_line_top_k,session_found_below_top_k,gold_line_low_rank_21_50, andgold_line_rank_below_50 bounded_coverage_improvement, a bounded next-slice projection for adding compact candidate rows without changing the default foreground packet budgetnegative_control_naive_large_radius, which must stay rejected when wider context growth would make candidate packs less usable
These fields explain whether remaining exact-line failures are candidate coverage failures or line-selection failures. They do not prove answer quality, official LongMemEval score, or that a larger context radius should be accepted by default.
Run the CI-safe answer/latency report schema path. This reuses the retrieval adapter, builds bounded candidate source windows, records retrieval and candidate-gathering latency, and produces answer-layer fields without making a live provider call:
python benchmarks\aippocampus\benchmark_longmemeval_answer.py --split longmemeval-v1-oracle --download --questions 5 --min-questions 1 --reader-mode dry-run --output benchmark_corpus\reports\longmemeval-v1-oracle-answer-dry-run-5.jsonRun the opt-in fixed-reader answer path only after choosing the provider,
model, API key environment variable, provider execution budget, checkpoint
paths, token budget, and cost table. The runner fails before the first provider
reader call when --reader-mode provider omits the shared provider budget
contract. The reader sees the public benchmark question and bounded retrieved
candidate source-line text. It does not receive gold answers, expected
lines/sessions, has_answer labels, miss taxonomy, judge labels, or raw report
cases:
$env:AIPPOCAMPUS_LONGMEMEVAL_READER_API_KEY="<provider key>"
python benchmarks\aippocampus\benchmark_longmemeval_answer.py --split longmemeval-v1-small --questions 25 --min-questions 25 --top-k 10 --reader-mode provider --reader-model <fixed-reader-model> --reader-base-url <openai-compatible-base-url> --partial-output benchmark_corpus\reports\longmemeval-v1-small-answer-fixed-reader-25.partial.json --provider-budget-checkpoint benchmark_corpus\reports\longmemeval-v1-small-answer-fixed-reader-25.budget.json --max-provider-calls 25 --max-provider-total-tokens <token-cap> --max-provider-estimated-cost-usd <usd-cap> --reader-input-cost-per-million <prompt-price> --reader-output-cost-per-million <completion-price> --output benchmark_corpus\reports\longmemeval-v1-small-answer-fixed-reader-25.jsonAnswer reports keep retrieval, answer, latency, token_usage, and cost
as separate top-level fields. The local deterministic judge reports answer
overlap, abstention, citation-line counts, and a failure taxonomy for
retrieval_miss, evidence_visible_reader_miss,
abstention_unanswerable_boundary, stale_update_confusion,
evaluation_mismatch, and answered_correctly. The report validator rejects
absolute local paths, raw question/answer/source text that the runner marked
forbidden, raw model response text, and credential-like strings before the run
can be treated as a usable artifact.
--progress-every emits sanitized JSONL progress to stderr. --partial-output
writes a sanitized checkpoint/partial diagnostic with hashed local-path
identity, phase, built/evaluated counts, elapsed time, and claim boundaries; it
does not include raw LongMemEval questions, answers, snippets, or local paths.
Generated dataset files and reports stay ignored by default. Do not commit full LongMemEval downloads or generated JSON reports unless a future change promotes a small curated artifact with provenance and license notes.
The first dated LongMemEval-S answer/latency baseline is summarized in
longmemeval-fixed-reader-answer-25-2026-06-12.md.
The raw generated report remains local and gitignored; the committed summary
preserves the fixed reader config, prompt version, model/provider metadata,
token/cost telemetry, sanitized report validation, and retrieval-vs-answer
claim separation.
The #1282 fixed-reader cleanup rerun is summarized in
longmemeval-fixed-reader-cleanup-25-2026-06-12.md.
It adds a privacy-safe failure review, v2 bounded-evidence reader prompt, and
explicit expansion gate. The current decision is no_go for 100Q or 500Q
provider answer runs until reader/provider errors, false abstentions on
answerable bounded evidence, unexplained judge mismatches, and stale/currentness
confusion blockers are fixed. The gate treats source-line packaging as
applicable only when the LongMemEval case has exact line-gold evidence; no-line
gold cases remain reader/retrieval diagnostics, not automatic packaging
failures.
This table is ordered by dated artifacts, not by claim strength. The newest rows may be narrower progress evidence; the 500-question retrieval-only and lexical rows remain the broader LongMemEval-S quality baselines.
| Date | Split | Mode | Questions | Session R@10 | Evidence-line R@10 | Reranked evidence-line R@10 | Context-visible evidence R@10 | Runtime | Status |
|---|---|---|---|---|---|---|---|---|---|
2026-06-14T08:20:40Z |
longmemeval-v1-small |
post-factual-alias rerank closeout analysis | 500 | 95.80% | 85.18% | 88.10% | 94.36% | analysis-only | #1437 closeout; 57 fused misses split into 15 candidate-missing and 42 reranker-visible; default exact-line reranker change rejected; bounded candidate-builder follow-up scoped; full projection marked local no-provider hot path; see longmemeval-post-factual-alias-rerank-closeout-500-2026-06-14.md |
2026-06-13T22:21:45Z |
longmemeval-v1-small |
retrieval-only + source factual alias cache v6 | 500 | 95.80% | 85.18% | 88.10% | 94.36% | 1078.28s | #1323/#1327/#1424 closeout slice; candidate evidence coverage 463/479; factual-alias candidate lift 16, fused lift 2; no provider calls; zero fused regressions; see longmemeval-source-factual-alias-500-2026-06-14.md |
2026-06-13T19:00:57Z |
longmemeval-v1-small |
retrieval-only + source factual alias cache v6 | 25 | 100.00% | 92.00% | 100.00% | 100.00% | 64.98s | #1424/#1425/#1426 slice; no provider calls; cache policy v6; factual-alias query-overlap remains sparse at 2/25; see longmemeval-source-factual-alias-25-2026-06-14.md |
2026-06-13T13:12:36Z |
longmemeval-v1-small |
retrieval-only + contract-aware full-source semantic-scope warming | 500 | 95.80% | 85.18% | 88.10% | 94.36% | 1167.30s | #1323 full-source warming; source-index cache hit 500/500; 500 cold-fill provider calls; hot path provider 0; sidecar coverage improved but fused R@10 unchanged |
2026-06-13T10:44:40Z |
longmemeval-v1-small |
retrieval-only + materialized semantic-scope sidecar diagnostic | 500 | 95.80% | 85.18% | 88.10% | 94.36% | 2559.04s | #1323 negative diagnostic; 0 rank delta vs worker-surface proxy; sidecar coverage/label-overlap bottleneck |
2026-06-12T18:10:20Z |
longmemeval-v1-small |
retrieval-only + AIppocampus source worker-surface proxy | 500 | 95.80% | 85.18% | 88.10% | 94.36% | 1494.10s | worker-surface proxy measured; no provider calls; not canonical semantic warming |
2026-06-12T16:43:38Z |
longmemeval-v1-small |
retrieval-only + semantic LLM query/candidate upper bound | 500 | 95.80% | 85.18% | 94.15% | 94.36% | 1705.75s | #1323 LLM upper bound; 9 provider errors |
2026-06-12T16:01:24Z |
longmemeval-v1-small |
retrieval-only + lexical line-reranker 100Q comparison | 100 | 97.00% | 87.23% | 89.36% | 96.81% | 154.73s | #1323 lexical comparison; deterministic |
2026-06-12T15:39:58Z |
longmemeval-v1-small |
retrieval-only + semantic line-reranker query/cache 100Q progress | 100 | 97.00% | 87.23% | 96.81% | 96.81% | 767.25s | #1323 progress; superseded by 500Q rows |
2026-06-12T10:10:57Z |
longmemeval-v1-small |
retrieval-only + semantic line-reranker warm query/cache replay | 25 | 100.00% | 92.00% | 100.00% | 100.00% | 240.30s | semantic_warm_query_cache_path_replay_report; #1305 warm cache |
2026-06-12T05:56:12Z |
longmemeval-v1-small |
retrieval-only + structural line-reranker failure report | 500 | 95.80% | 85.18% | 86.85% | 94.36% | 716.64s | retrieval_sufficient; #1193 failure report |
2026-06-12T00:59:47Z |
longmemeval-v1-small |
fixed-reader provider answer cleanup | 25 | 100.00% | 92.00% | - | 100.00% | 142.53s | answer_scored; expansion no_go |
2026-06-11T22:24:24Z |
longmemeval-v1-small |
fixed-reader provider answer baseline | 25 | 100.00% | 92.00% | - | 100.00% | 192.69s | answer_scored |
2026-06-10T07:26:53Z |
longmemeval-v1-small |
retrieval-only + optional semantic LLM line reranker pilot | 25 | 100.00% | 92.00% | 100.00% | 100.00% | 239.15s | retrieval_sufficient pilot |
2026-06-10T04:15:44Z |
longmemeval-v1-small |
retrieval-only + optional lexical line reranker | 500 | 95.80% | 85.18% | 87.47% | 94.36% | 737.84s | retrieval_sufficient |
2026-06-10T03:33:49Z |
longmemeval-v1-small |
retrieval-only larger slice | 500 | 95.80% | 85.18% | - | 94.36% | 803.10s | retrieval_sufficient |
2026-06-09T14:08:17Z |
longmemeval-v1-small |
retrieval-only larger slice | 100 | 97.00% | 87.23% | - | 96.81% | 126.72s | retrieval_sufficient |
2026-05-30T17:05:34Z |
longmemeval-v1-small |
retrieval-only | 50 | 100.00% | 92.00% | - | 100.00% | 167.65s | retrieval_sufficient |
2026-05-30T16:47:41Z |
longmemeval-v1-oracle |
retrieval-only smoke | 50 | 100.00% | 96.00% | - | 100.00% | not recorded | retrieval_sufficient |
Fresh reproduction commands:
python benchmarks\aippocampus\benchmark_longmemeval.py --split longmemeval-v1-oracle --download --questions 50 --min-questions 20 --top-k 10 --output benchmark_corpus\reports\longmemeval-v1-oracle-retrieval-50.json
python benchmarks\aippocampus\benchmark_longmemeval.py --split longmemeval-v1-small --download --questions 50 --min-questions 20 --top-k 10 --output benchmark_corpus\reports\longmemeval-v1-small-retrieval-50.json
python benchmarks\aippocampus\benchmark_longmemeval.py --split longmemeval-v1-small --download --questions 100 --min-questions 100 --top-k 10 --output benchmark_corpus\reports\longmemeval-v1-small-retrieval-100.json
python benchmarks\aippocampus\benchmark_longmemeval.py --split longmemeval-v1-small --download --questions 500 --min-questions 100 --top-k 10 --progress-every 25 --partial-output benchmark_corpus\reports\longmemeval-v1-small-retrieval-500.partial.json --output benchmark_corpus\reports\longmemeval-v1-small-retrieval-500.json
python benchmarks\aippocampus\benchmark_longmemeval.py --split longmemeval-v1-small --download --questions 500 --min-questions 100 --top-k 10 --line-reranker lexical --line-reranker-workers 8 --progress-every 50 --partial-output benchmark_corpus\reports\longmemeval-v1-small-lexical-500.partial.json --output benchmark_corpus\reports\longmemeval-v1-small-lexical-500.json
python benchmarks\aippocampus\benchmark_longmemeval.py --split longmemeval-v1-small --questions 500 --min-questions 100 --top-k 10 --line-reranker structural --line-reranker-workers 8 --progress-every 50 --partial-output benchmark_corpus\reports\longmemeval-v1-small-structural-500.partial.json --output benchmark_corpus\reports\longmemeval-v1-small-structural-500.json
python benchmarks\aippocampus\benchmark_longmemeval_rerank_analysis.py --report benchmark_corpus\reports\longmemeval-v1-small-structural-500.json --baseline-report benchmark_corpus\reports\longmemeval-v1-small-lexical-500.json --semantic-pilot-report benchmark_corpus\reports\longmemeval-v1-small-semantic-pilot-25.json --output docs\evidence\benchmarks\reports\longmemeval\longmemeval-exact-line-repair-2026-06-12.json --json
python benchmarks\aippocampus\benchmark_longmemeval.py --split longmemeval-v1-small --download --questions 25 --min-questions 25 --top-k 10 --line-reranker semantic --line-reranker-workers 1 --line-reranker-timeout 30 --progress-every 5 --max-provider-calls 25 --max-provider-total-tokens 300000 --provider-cost-unknown --provider-budget-checkpoint benchmark_corpus\reports\longmemeval-v1-small-semantic-pilot-25.budget.json --partial-output benchmark_corpus\reports\longmemeval-v1-small-semantic-pilot-25.partial.json --output benchmark_corpus\reports\longmemeval-v1-small-semantic-pilot-25.json
python benchmarks\aippocampus\benchmark_longmemeval.py --split longmemeval-v1-small --download --questions 25 --min-questions 25 --top-k 10 --line-reranker semantic --line-reranker-workers 1 --line-reranker-timeout 30 --progress-every 5 --max-provider-calls 25 --max-provider-total-tokens 300000 --provider-cost-unknown --provider-budget-checkpoint benchmark_corpus\reports\longmemeval-v1-small-semantic-pilot-25-cachehash.budget.json --partial-output benchmark_corpus\reports\longmemeval-v1-small-semantic-pilot-25-cachehash.partial.json --output benchmark_corpus\reports\longmemeval-v1-small-semantic-pilot-25-cachehash.json
python benchmarks\aippocampus\benchmark_longmemeval_rerank_analysis.py --report benchmark_corpus\reports\longmemeval-v1-small-structural-500.json --baseline-report benchmark_corpus\reports\longmemeval-v1-small-lexical-500.json --semantic-pilot-report benchmark_corpus\reports\longmemeval-v1-small-semantic-pilot-25-cachehash.json --output docs\evidence\benchmarks\reports\longmemeval\longmemeval-semantic-cache-path-2026-06-12.json --json
python benchmarks\aippocampus\benchmark_longmemeval.py --split longmemeval-v1-small --questions 100 --min-questions 100 --top-k 10 --line-reranker lexical --line-reranker-workers 8 --progress-every 20 --partial-output benchmark_corpus\reports\longmemeval-v1-small-lexical-100-2026-06-12.partial.json --output benchmark_corpus\reports\longmemeval-v1-small-lexical-100-2026-06-12.json --json
python benchmarks\aippocampus\benchmark_longmemeval.py --split longmemeval-v1-small --questions 100 --min-questions 100 --top-k 10 --line-reranker semantic --line-reranker-timeout 45 --line-reranker-workers 2 --progress-every 10 --partial-output benchmark_corpus\reports\longmemeval-v1-small-semantic-cache-100-2026-06-12.partial.json --provider-budget-checkpoint benchmark_corpus\reports\longmemeval-v1-small-semantic-cache-100-2026-06-12.budget.json --max-provider-calls 100 --max-provider-total-tokens 1500000 --provider-cost-unknown --output benchmark_corpus\reports\longmemeval-v1-small-semantic-cache-100-2026-06-12.json --json
python benchmarks\aippocampus\benchmark_longmemeval.py --split longmemeval-v1-small --questions 100 --min-questions 100 --top-k 10 --line-reranker semantic --line-reranker-timeout 45 --line-reranker-workers 8 --progress-every 10 --partial-output benchmark_corpus\reports\longmemeval-v1-small-semantic-cache-100-warm-workers8-2026-06-12.partial.json --provider-budget-checkpoint benchmark_corpus\reports\longmemeval-v1-small-semantic-cache-100-warm-workers8-2026-06-12.budget.json --max-provider-calls 100 --max-provider-total-tokens 1500000 --provider-cost-unknown --output benchmark_corpus\reports\longmemeval-v1-small-semantic-cache-100-warm-workers8-2026-06-12.json --json
python benchmarks\aippocampus\benchmark_longmemeval_rerank_analysis.py --report benchmark_corpus\reports\longmemeval-v1-small-semantic-cache-100-2026-06-12.json --baseline-report benchmark_corpus\reports\longmemeval-v1-small-lexical-100-2026-06-12.json --semantic-pilot-report benchmark_corpus\reports\longmemeval-v1-small-semantic-cache-100-2026-06-12.json --output benchmark_corpus\reports\longmemeval-v1-small-semantic-cache-100-2026-06-12.local-replay-analysis.json --json
python benchmarks\aippocampus\benchmark_longmemeval.py --split longmemeval-v1-small --questions 500 --min-questions 100 --top-k 10 --line-reranker source_semantic_cache --line-reranker-workers 32 --standard-cache-dir benchmark_corpus\.cache\standard-public-cases --source-semantic-sidecar-materializer public_semantic_labeler --source-semantic-sidecar-max-candidates 8 --max-source-semantic-sidecar-calls 500 --source-semantic-sidecar-workers 12 --source-semantic-sidecar-timeout 90 --source-semantic-sidecar-max-tokens 0 --progress-every 50 --partial-output benchmark_corpus\reports\longmemeval-v1-small-semantic-scope-sidecar-500-2026-06-13.partial.json --output benchmark_corpus\reports\longmemeval-v1-small-semantic-scope-sidecar-500-2026-06-13.json
python benchmarks\aippocampus\benchmark_longmemeval.py --split longmemeval-v1-small --questions 500 --min-questions 500 --top-k 10 --line-reranker source_semantic_cache --line-reranker-workers 64 --standard-cache-dir benchmark_corpus\.cache\standard-public-cases --source-semantic-sidecar-materializer public_semantic_labeler_full_source --source-semantic-sidecar-max-candidates 768 --max-source-semantic-sidecar-calls 700 --source-semantic-sidecar-workers 180 --source-semantic-sidecar-timeout 480 --source-semantic-sidecar-max-tokens 20000 --progress-every 100 --partial-output benchmark_corpus\reports\longmemeval-v1-small-semantic-scope-full-source-sidecar-v3-contract-500-2026-06-13.partial.json --output benchmark_corpus\reports\longmemeval-v1-small-semantic-scope-full-source-sidecar-v3-contract-500-2026-06-13.json
python benchmarks\aippocampus\benchmark_longmemeval_answer.py --split longmemeval-v1-small --download --questions 25 --min-questions 25 --top-k 10 --reader-mode provider --reader-model deepseek-v4-flash --reader-api-key-env DEEPSEEK_API_KEY --reader-timeout 45 --reader-max-tokens 512 --reader-input-cost-per-million 0.28 --reader-output-cost-per-million 0.42 --partial-output benchmark_corpus\reports\longmemeval-v1-small-answer-fixed-reader-25-2026-06-12.partial.json --provider-budget-checkpoint benchmark_corpus\reports\longmemeval-v1-small-answer-fixed-reader-25-2026-06-12.budget.json --max-provider-calls 25 --max-provider-total-tokens 400000 --max-provider-estimated-cost-usd 0.25 --output benchmark_corpus\reports\longmemeval-v1-small-answer-fixed-reader-25-2026-06-12.json --json
python benchmarks\aippocampus\benchmark_longmemeval_answer.py --split longmemeval-v1-small --download --questions 25 --min-questions 25 --top-k 10 --reader-mode provider --reader-model deepseek-v4-flash --reader-api-key-env DEEPSEEK_API_KEY --reader-timeout 45 --reader-max-tokens 512 --reader-input-cost-per-million 0.28 --reader-output-cost-per-million 0.42 --partial-output benchmark_corpus\reports\longmemeval-v1-small-answer-fixed-reader-v2-25-2026-06-12.partial.json --provider-budget-checkpoint benchmark_corpus\reports\longmemeval-v1-small-answer-fixed-reader-v2-25-2026-06-12.budget.json --max-provider-calls 25 --max-provider-total-tokens 400000 --max-provider-estimated-cost-usd 0.25 --output benchmark_corpus\reports\longmemeval-v1-small-answer-fixed-reader-v2-25-2026-06-12.json --jsonFixed-reader answer baseline for #1194:
- Summary:
longmemeval-fixed-reader-answer-25-2026-06-12.md. - Reader attempted:
25/25; deterministic answer-correct count:20/25 = 0.8000. - Retrieval/reference layer in the same run: session R@10
25/25, evidence-line R@1023/25, and context-visible evidence R@1025/25. - Reader latency: average
2723.84ms, max6775.68ms; total elapsed192.69s. - Token/cost:
379965total tokens; run-configured cost estimateUSD 0.106922under the explicit command-line price table. - Sanitized report validation: passed; the committed summary does not include raw question text, raw answers, raw source text, local paths, raw model responses, or credentials.
- Boundary: this is not the official LongMemEval judge, not LongMemEval-V2, not SOTA/leaderboard evidence, and not default reader/provider adoption.
Fixed-reader cleanup for #1282:
- Summary:
longmemeval-fixed-reader-cleanup-25-2026-06-12.md. - Reader attempted:
25/25; deterministic answer-correct count:19/25 = 0.7600. - Retrieval/reference layer in the same run stayed unchanged from the baseline:
session R@10
25/25, evidence-line R@1023/25, and context-visible evidence R@1025/25. - Failure review:
3reader/provider errors,1false abstention on answerable bounded evidence,1deterministic-judge mismatch, and1true reader miss. - Expansion gate:
no_gofor 100Q or 500Q until the blocker categories above are fixed and rerun on the 25Q slice. Currentness/stale-update confusion is now a gate blocker; no-line-gold wrong answers are not counted as exact-line packaging failures without line evidence.
LongMemEval-S 500-question verification summary:
- Public artifact trail:
longmemeval-500-retrieval-artifact-2026-06-11.json. This manifest records the deterministic rerun metadata, dataset checksum, command shape, report SHA-256, aggregate metrics, privacy checks, and schema preview without committing the raw dataset or full generated report. - Dataset file:
longmemeval_s_cleaned.json - Bytes:
277383467 - SHA-256:
d6f21ea9d60a0d56f34a05b609c79c88a451d2ae03597821ea3d5a9678c3a442 - Total runner time:
803.10s - Questions:
500 - Case mix:
70single-session-user,133multi-session,30single-session-preference,133temporal-reasoning,78knowledge-update, and56single-session-assistant cases. - Evidence-line cases:
479 - Top-k:
10 - Evidence context radius:
5 - Session R@10:
479/500, Wilson 95% CI0.9366..0.9724 - Evidence-line R@10:
408/479, Wilson 95% CI0.8172..0.8808 - Context-visible evidence R@10:
452/479, Wilson 95% CI0.9192..0.9610 - MRR: session
0.8809, evidence-line0.6309, context-visible evidence0.8086 - Evidence context rescued top-10 cases:
44 - Evidence context improved cases:
179 - Evidence-line recall ladder: R@1
240/479 = 0.5010, R@3349/479 = 0.7286, R@5380/479 = 0.7933, R@10408/479 = 0.8518, R@20429/479 = 0.8956, and R@50450/479 = 0.9395. - Evidence miss taxonomy for the 71 exact-line R@10 misses:
context-visible exact-line miss
44, session found below top-k9, same-session wrong-line top-k9, gold line low-ranked at 21-505, gold line below rank 503, and gold line near-miss rank 11-201. - The 44 context-visible rescues were near the exact evidence line: distance 1
29, distance 2-to-context-radius15. - Warning count:
0 - Evaluator model / API: none; deterministic retrieval-only run.
- Progress checkpoints were emitted every 25 cases, and the final partial-output payload completed rather than recording a blocker.
- Raw report location:
benchmark_corpus/reports/longmemeval-v1-small-retrieval-500.jsonlocally, intentionally gitignored.
Optional lexical line-reranker 500-question follow-up for #1087:
- Run date:
2026-06-10T04:15:44Z - Command: same 500-question LongMemEval-S split and top-k as above, with
--line-reranker lexical --line-reranker-workers 8. - Total runner time:
737.84s - The first-stage retrieval baseline in the same run stayed unchanged:
session R@10
479/500, exact evidence-line R@10408/479, and context-visible evidence R@10452/479. - Fused reranked evidence-line R@10:
419/479 = 0.8747, up 11 exact-line top-10 hits over first-stage FTS. - Fused reranked evidence-line MRR:
0.6746, up0.0437over the first-stage evidence-line MRR0.6309. - Source-joined bridge lifts:
11; these came from 10 context-visible exact-line misses and 1 same-session wrong-line top-k miss. - Reranker candidate evidence coverage:
455/479 = 0.9499; average candidate count:51.58. - Reranker error count:
0; warning count:0. - Evaluator model / API: none. The
lexicalreranker uses only question terms, source-window candidate text, role, channel, rank, and context-distance metadata. It does not use answer labels, expected lines, or model summaries. - Sanitized report spot-check found no raw fixture strings, local absolute paths, or source text markers.
- Raw report location:
benchmark_corpus/reports/longmemeval-v1-small-lexical-500.jsonlocally, intentionally gitignored.
Structural exact-line repair failure report for #1193:
- Summary:
longmemeval-exact-line-repair-2026-06-12.md. - Sanitized JSON:
longmemeval-exact-line-repair-2026-06-12.json. - Run date:
2026-06-12T05:56:12Z. - Command: same 500-question LongMemEval-S split and top-k as above, with
--line-reranker structural --line-reranker-workers 8. - The
structuralreranker uses only query text, candidate source text, adjacent source-window text, route rank metadata, and context distance. It withholds gold answers, expected lines/sessions,has_answerlabels, judge labels, and miss taxonomy. - It did not beat the same-split lexical 500Q baseline: structural fused
evidence-line R@10 was
416/479 = 0.8685versus lexical419/479 = 0.8747; structural MRR was0.6663versus lexical0.6746. - Context-visible conversion fell from lexical
10to structural8; same-session wrong-line reduction fell from lexical11to structural8. - Miss-family conclusion: 36 context-visible exact-line misses still had the target line in the candidate pool but were not selected; 9 session-found-below top-k cases and most low-rank/below-rank-50 cases need source-window routing or source-side semantic support rather than more local line heuristics.
- Semantic path boundary: the existing 25Q semantic pilot remains a quality
ceiling/debugging signal. Its cold online path averaged
7156.27ms, used225170tokens, and projected to about4503400tokens and59.64single-worker minutes for 500 questions. #1305 measured warm query/candidate replay separately, and the 500Q section below now measures both the current worker-surface proxy and the 500Q query/candidate LLM upper bound. A future DeepSeek source-side materializer remains a separate productization question. - Decision: close #1193 as a deterministic failure report and cache-path boundary. Do not make cold online semantic rerank a default hook path, and do not spend more effort on untuned structural heuristics. The later 500Q rows now provide the worker-surface proxy and 500Q semantic measurements that #1193 left open.
Warm query/candidate cache replay for #1305:
- Summary:
longmemeval-semantic-cache-path-2026-06-12.md. - Sanitized JSON:
longmemeval-semantic-cache-path-2026-06-12.json. - Run date:
2026-06-12T10:10:57Z. - The fresh 25Q semantic pilot now emits
line_reranker_candidate_pack_sha1, a hash of candidate line/routing metadata plus source-text hashes. The hash is used as the candidate-window cache-key input without committing raw candidate text, questions, answers, source text, provider responses, credentials, or local paths. - Warm query/candidate replay status:
measured_sanitized_warm_query_cache_replay. - Complete cache keys:
24/24available cold-fill calls. The key fields are query hash, candidate window/span hash, reranker prompt version, model/provider id, source or dataset fingerprint, and policy version. - Cold-fill provider path:
24available calls, average6308.67ms, max21006.74ms,223947tokens. Provider prefix-cache hit rate was0.0000in this rerun, so the product query/cache path is measured separately from provider prefix-cache behavior. - Warm replay:
24/24hits, hit rate1.0000; average local lookup latency0.000079ms; two-pass hit rate0.5000because the first pass fills and the second pass hits. - Exact-line metrics on the 25Q pilot: first-stage evidence-line R@10
23/25 = 0.9200, semantic-only evidence-line R@1024/25 = 0.9600, fused reranked evidence-line R@123/25 = 0.9200, fused reranked evidence-line R@3/R@5/R@1025/25 = 1.0000, MRR0.9600, and top-10 regression count0. - Miss-family breakdown:
context_visible_exact_line_miss2/2recovered; those same two cases are also the same-session wrong-line focus cases in this narrow pilot.exact_line_found_top_kstayed22/22, andmulti_evidence_partial_hitstayed1/1. - Boundary: this completes the warm query/candidate cache measurement slice for #1305, not the 500Q semantic-quality slice and not source-side semantic warming. Cold online semantic rerank remains explicit opt-in and is still not a default hook path.
500Q source-worker-surface proxy and LLM upper bound:
- Summary:
longmemeval-source-worker-surface-500q-2026-06-13.md. - Sanitized JSON:
longmemeval-source-worker-surface-500q-2026-06-13.json. - Source-side run date:
2026-06-12T18:10:20Z. LLM upper-bound run date:2026-06-12T16:43:38Z. - Dataset scale: LongMemEval-S first
500questions; runner-scanned source messages246,738; direct JSON scan244,651,645characters, roughly61.2Mto81.6Mtokens by simple chars/4 to chars/3 ratios. This is a rough scale estimate, not tokenizer-measured usage. - Current AIppocampus worker-surface proxy:
--line-reranker source_semantic_cachebuildsaippocampus_working_memorynavigation rows from clean source and uses the existing hot matcher. It is not an LLM prompt/cache, not the canonical semantic-scope / subconscious / warm-ambient materializer, and it makes no provider calls. - Source-side cold build:
500source caches,246,738working-memory rows, complete rate1.0, failed rows0, provider calls/tokens0, and prewarm workers64. - Source-side hot path: source-worker search averaged
1044.5179msand maxed3464.3719ms; candidate rerank after that averaged1.18ms. - Source-side quality: baseline evidence-line R@10
408/479 = 0.8518; source-worker search alone R@10156/479 = 0.3257; source-worker rerank only R@10398/479 = 0.8309; FTS-preserving fused R@10422/479 = 0.8810; fused MRR0.6734; bridge lifts14; fused top-10 regressions0; source-only top-10 regressions24. - LLM query/candidate upper bound:
--line-reranker semanticwith--line-reranker-timeout 180 --line-reranker-workers 8produced semantic fused R@10451/479 = 0.9415, MRR0.8738, and bridge lifts43. - LLM timeout boundary: this was not the default
12stimeout. The 500Q LLM run explicitly set180s; it still reported7timeout errors and2other line-reranker errors, with470/479available calls. - LLM token/cache telemetry:
4,719,903total tokens,921,088provider prefix-cache hit tokens,3,101,946miss tokens, hit rate0.2290. This provider prefix-cache telemetry is separate from product cache behavior. - Decision: this row measures the current worker-surface proxy and the
query/candidate LLM upper bound. It does not show that the benchmark used the
canonical source-side semantic warming/materializer path
(
semantic_scope_labeling,semantic_scope_builder, subconscious jobs, warm ambient routes, and attention-router handoff). Treat the proxy as useful evidence for worker-row shape and fusion behavior, not as the closeout of the intended source-side semantic architecture. - Boundary: do not claim official LongMemEval QA score, answer-generation quality, SOTA, provider-independent quality, default foreground LLM rerank, canonical source-side semantic materializer quality, or broad life-history memory superiority from this row.
500Q source factual-alias closeout for #1323/#1327/#1424:
- Summary:
longmemeval-source-factual-alias-500-2026-06-14.md. - Sanitized JSON:
longmemeval-source-factual-alias-500-2026-06-14.json. - Run date:
2026-06-13T22:21:45Z. - Command: same LongMemEval-S first-500 cohort and top-k
10as the existing 500Q rows, with--line-reranker source_semantic_cache, localaippocampus-working-memory-factual-surface-v3, cache policyaippocampus-source-worker-surface-cache-v6, and no provider calls. - Main retrieval layer: session R@10
479/500 = 0.9580, evidence-line R@10408/479 = 0.8518, context-visible evidence R@10452/479 = 0.9436. - Factual-alias/source-cache fused result: fused evidence-line R@10
422/479 = 0.8810, MRR0.6744, and fused top-10 regression count0. - Source-window coverage diagnostic: reranker candidate evidence coverage
463/479 = 0.9666, up from the earlier lexical 500Q diagnostic's455/479 = 0.9499; average candidate count96.00; remaining fused misses split into15candidate-missing and42reranker-visible misses. - Factual-alias-specific readout: factual-alias evidence coverage
227/479 = 0.4739, factual-alias candidate evidence coverage220/479 = 0.4593, gold candidate alias cases220, gold candidate query-overlap cases28, candidate lift top-1016, and fused lift top-102. - Cache/latency:
500source caches,246,738source rows/spans,109,144factual-alias profiles,738,561factual-alias terms, cache-key complete rate1.0, hot-query provider calls0, hot-query latency average1092.5576ms, and max1926.4032ms. - Decision: this closes #1327's bounded source-window coverage diagnostic and #1424's source-side factual artifact/hot-path owner. It also gives #1323 a measured source-side benchmark closeout: the semantic-scope full-source materializer remains a no-lift boundary, while the factual-alias layer is the source-local factual surface that actually moves candidate coverage on the 500Q cohort.
- Boundary: do not claim answer-generation quality, official LongMemEval QA score, LongMemEval-V2 quality, SOTA, broad life-history memory superiority, default foreground adoption, perfect exact-line citation quality, or source truth from aliases/candidate routes without source reopen.
Post-factual-alias exact-line closeout for #1437:
- Summary:
longmemeval-post-factual-alias-rerank-closeout-500-2026-06-14.md. - Sanitized analysis JSON:
longmemeval-post-factual-alias-rerank-closeout-500-2026-06-14.analysis.json. - Source report:
longmemeval-source-factual-alias-500-2026-06-14.json. - Decision:
post_factual_alias_exact_line_rerank_v1is rejected as a default reranker change from this evidence. The 57 remaining fused misses are dominated by 42 candidate-visible exact-line ranking failures, while the factual-alias signal produced 16 candidate lifts but only 2 fused top-10 lifts. A bounded candidate-builder follow-up is acceptable as a separate coverage slice, not as an exact-line ranking or source-truth claim. - Full projection:
already_measured_local_hot_path; this closeout used the local source-semantic-cache path with no provider calls or provider tokens. - Boundary: do not claim default reranker adoption, perfect exact-line citation quality, answer-generation quality, official LongMemEval QA score, SOTA, or source truth from aliases/candidate routes without source reopen.
100Q semantic query/candidate cache progress, superseded by the 500Q rows above:
- Summary:
longmemeval-semantic-cache-100q-2026-06-12.md. - Sanitized JSON:
longmemeval-semantic-cache-100q-2026-06-12.json. - Run dates: lexical comparison
2026-06-12T16:01:24Z, semantic first run2026-06-12T15:39:58Z, and semantic repeated provider-prefix replay2026-06-12T15:45:30Z. - This was progress toward the semantic-cache question, not the canonical source-side materializer result. The 500Q rows above cover the query/candidate LLM upper bound and the current worker-surface proxy.
- Same-cohort baseline: session R@10
97/100, evidence-line R@1082/94 = 0.8723, context-visible evidence R@1091/94 = 0.9681, and evidence-line MRR0.6481. - Lexical comparison: lexical fused evidence-line R@10
84/94 = 0.8936, MRR0.6990, and top-10 regression count0. - Semantic first run: semantic-only evidence-line R@10
87/94 = 0.9255, semantic fused R@1091/94 = 0.9681, fused MRR0.9246, and top-10 fused regression count0. - Query/candidate replay:
90/90available semantic rows had complete cache keys; second-pass warm replay hit90/90; warm local lookup averaged0.000063ms; cold-fill provider latency averaged11136.85msand used979237tokens. - Provider prefix-cache telemetry is separate from product cache behavior:
the workers=2 first run reported prefix-cache hit rate
0.2514, while the workers=8 repeated run reported0.9932and reduced wall time from767.25sto273.35s. - Hurt cases: semantic-only top-10 ranking regressed 4 baseline top-10 cases,
all in
multi_evidence_partial_hit; the fused path preserved the original FTS hits, so its0top-10 regression count is a fusion-rule property, not pure model quality. The 4 semantic timeouts were all multi-session cases. - Remaining fused misses are
gold_line_low_rank_21_50,same_session_wrong_line_top_k, andsession_found_below_top_k; these are better candidates for broader routing or source-side semantic warming than for more foreground per-query reranking. - Boundary: this 100Q row remains useful for comparing workers=2 versus workers=8 and provider prefix-cache behavior, but it is superseded as same-cohort measurement evidence by the 500Q worker-surface proxy and LLM rows above.
Optional semantic LLM line-reranker pilot for #1092:
- Run date:
2026-06-10T07:26:53Z - Command: first 25 LongMemEval-S questions, top-k
10, with--line-reranker semantic --line-reranker-workers 1 --line-reranker-timeout 30. - Prompt / arm:
llm_window_to_line_rerank,llm-window-to-line-rerank-v1. - Provider/model: DeepSeek-compatible chat API,
deepseek-v4-flash. - Input boundary: the external model saw question text plus bounded candidate
line number, role, session rank, nearest-hit rank, context distance, and
candidate source text. It did not receive gold answers, expected
lines/sessions,
has_answerlabels, judge labels, miss taxonomy, or raw report cases. - The first-stage retrieval baseline in the same run: session R@10
25/25, exact evidence-line R@1023/25, and context-visible evidence R@1025/25. - Semantic-only evidence-line R@10:
24/25; fused reranked evidence-line R@10:25/25; fused evidence-line MRR1.0000, up0.3652over first-stage evidence-line MRR0.6348. - Sanitized analysis report:
longmemeval-semantic-rerank-analysis-2026-06-10.json. - Reranked evidence-line ladder from the analysis report: R@1/R@3/R@5/R@10/R@20/R@50
all
25/25 = 1.0000. Baseline ladder for the same 25 cases was R@112/25 = 0.4800, R@318/25 = 0.7200, R@521/25 = 0.8400, R@1023/25 = 0.9200, R@2024/25 = 0.9600, and R@5024/25 = 0.9600. - Context-visible rescue conversion:
2/2; same-session wrong-line reduction:2/2; top-10 rerank regression count:0. - Gold-rank bucket movement: not retrieved to rank 1
1, rank 11-20 to rank 11, rank 6-10 to rank 12, rank 4-5 to rank 13, rank 2-3 to rank 16, and rank 1 stayed rank 112. - Per-case-type coverage in this pilot is narrow: all
25cases arelongmemeval_single-session-user. That is useful for debugging the arm, but it is not enough to claim per-type quality across the full LongMemEval-S mix. - Source-joined bridge lifts:
2; reranker candidate evidence coverage:25/25; average candidate count:54.32. - Reranker availability:
24/25; one case timed out; warning count0. - Token / latency / cache telemetry:
225170total tokens (212482prompt,12688completion); DeepSeek prefix-cache hit tokens75392, miss tokens137090, hit rate0.3548; latency count24, average7156.27ms, max29434.87ms. - Provider dollar cost: unavailable in the chat-completions response; the report records usage/cache/latency instead.
- 500-question projection from the 25Q pilot: about
4503400total tokens,1507840projected prompt-cache hit tokens,2741800projected prompt-cache miss tokens, and59.64single-worker minutes at the observed average available-call latency. Because provider dollar cost is not reported and the arm sends public benchmark question/candidate source text to an external model, the full 500Q semantic run is explicit opt-in only. Required before a full run: operator budget approval, a provider cost model or ceiling, privacy review for external candidate source text, and a gitignored partial-output path. - Raw report location:
benchmark_corpus/reports/longmemeval-v1-small-semantic-pilot-25.jsonlocally, intentionally gitignored. - Decision: the semantic arm remains useful and reproducible, but the full 500Q LLM rerank is not run by default. The current #1092 result is a bounded pilot plus explicit budget/latency/privacy boundary, not a 500-question LLM quality claim.
This retires the 2026-06-09 incomplete 500-question missing-artifact attempt: the current blocker is no longer completion. The remaining LongMemEval gap is quality: even with the optional lexical reranker, exact evidence-line ranking is still weaker than source-window routing.
Earlier 100-question LongMemEval-S verification summary:
- Dataset file:
longmemeval_s_cleaned.json - Bytes:
277383467 - SHA-256:
d6f21ea9d60a0d56f34a05b609c79c88a451d2ae03597821ea3d5a9678c3a442 - Total runner time:
126.72s - Questions:
100 - Case mix:
70single-session-user and30multi-session cases. - Evidence-line cases:
94 - Top-k:
10 - Evidence context radius:
5 - Session R@10:
97/100, Wilson 95% CI0.9155..0.9897 - Evidence-line R@10:
82/94, Wilson 95% CI0.7900..0.9254 - Context-visible evidence R@10:
91/94, Wilson 95% CI0.9103..0.9891 - MRR: session
0.8749, evidence-line0.6481, context-visible evidence0.8233 - Evidence context rescued top-10 cases:
9 - Evidence context improved cases:
36 - Warning count:
0 - Evaluator model / API: none; deterministic retrieval-only run.
- Raw report location:
benchmark_corpus/reports/longmemeval-v1-small-retrieval-100.jsonlocally, intentionally gitignored.
2026-06-10 exact-line taxonomy addendum for #1087:
- Re-run command used the same public split, 100-question cap, top-k
10, and evidence context radius5; the sanitized local report was written to a gitignored.tmppath and did not emit raw LongMemEval questions, answers, snippets, local absolute paths, or source text. - Evidence-line recall ladder: R@1
49/94 = 0.5213, R@369/94 = 0.7340, R@576/94 = 0.8085, R@1082/94 = 0.8723, R@2085/94 = 0.9043, and R@5089/94 = 0.9468. - Evidence rank buckets: rank 1
49, rank 2-320, rank 4-57, rank 6-106, rank 11-203, rank 21-504, below rank 503, and not retrieved2. - Top-10 line taxonomy: exact line found
62, multi-evidence partial hit20, context-visible exact-line miss9, same-session wrong-line top-101, session found below top-k1, and gold line low-ranked at 21-501. - The 12 exact-line R@10 misses break down as: context-visible exact-line miss
9, session found below top-k1, same-session wrong-line top-k1, and gold line low-ranked at 21-501. - The 9 context-visible rescues were near the exact evidence line: distance 1
6, distance 2-to-context-radius3.
Product interpretation: the current adapter is strong at source-window and reopenable-route navigation, but exact evidence-line citation remains a real improvement area. Most exact-line misses are not total retrieval failures: they are nearby source-window hits or line-ranking misses. Do not treat context-visible evidence as equivalent to exact-line retrieval; it means the foreground agent can usually reopen the right source window, not that a final citation span is already selected.
Historical note: the 2026-06-09 attempt to run a 500-question LongMemEval-S diagnostic stopped without stdout, stderr, or an output report. The 2026-06-10 completed run above supersedes that blocker and confirms the progress / partial-output path is sufficient for this local diagnostic.
Earlier 50-question LongMemEval-S verification summary:
- Dataset file:
longmemeval_s_cleaned.json - Bytes:
277383467 - SHA-256:
d6f21ea9d60a0d56f34a05b609c79c88a451d2ae03597821ea3d5a9678c3a442 - Download time:
13.48s - Total runner time:
167.65s - Evaluator model / API: none; deterministic retrieval-only run.
- Evidence context radius:
5 - Evidence context rescued top-10 cases:
4 - Raw report location:
benchmark_corpus/reports/longmemeval-v1-small-retrieval-50.jsonlocally, intentionally gitignored.
Oracle smoke verification summary:
- Dataset file:
longmemeval_oracle.json - Bytes:
15388478 - SHA-256:
821a2034d219ab45846873dd14c14f12cfe7776e73527a483f9dac095d38620c - Evidence context radius:
5 - Evidence context rescued top-10 cases:
2 - Raw report location:
benchmark_corpus/reports/longmemeval-v1-oracle-retrieval-50.jsonlocally, intentionally gitignored.
These results support bounded V1 retrieval-only source-evidence claims for LongMemEval-S and the oracle smoke split. They do not support answer-generation quality, judge-model scores, V2 quality, SOTA comparisons, or decision-gate quality.
Reports have kind: aippocampus_longmemeval_benchmark and include:
benchmark: official URLs, split name, dataset version, local path hash, and checksum verification.evaluation: retrieval-only mode, top-k settings, and the explicit absence of QA generation or judge model.metrics: question count, session recall@K, source-line recall@K, context-visible source-line recall, MRR where available, rank-bucket diagnostics, exact-line recall ladders, and sanitized miss taxonomy counts.provider_execution_budget: present for live/provider reranker runs; records declared caps, completed/skipped/failed/timed-out units, elapsed time, token/cache usage, estimated cost or unavailable reason, stop reason, and preflight validation errors.cases: sanitized per-case rows with hashed ids and no raw LongMemEval text.cannot_claim: legacy compatibility boundary field for QA, judge-model, V2, SOTA, and broad-comparison limits.
Answer reports have kind: aippocampus_longmemeval_answer_benchmark and
include:
evaluation.reader: fixed prompt version, provider/model/base-url hash, cache policy, API-key environment variable name, and input/output boundaries.retrieval: the existing session/source-line/source-window metrics and corpus counts.answer: deterministic local answer metrics and failure taxonomy counts, without raw reader answer text.latency,token_usage,reader_cache, andcost: measured separately from retrieval quality and answer correctness.sanitized_report_validation: absolute-path, raw-text, and credential-like string checks that must pass before the report can be used.cannot_claim: legacy compatibility boundary field for official leaderboard score, official judge score, V2, LoCoMo, PersonaMem, SOTA, private-history quality, and default reader/provider adoption limits.
V2 mapping reports have
kind: aippocampus_longmemeval_v2_context_mapping and include:
benchmark: official V2 URLs, license, local file path hashes, byte counts, and SHA-256 values when available.schema_observation: field/domain/environment/question-type counts only.metrics: join-key coverage, environment-pool coverage, ambiguity rate, and evidence-ref availability.decision: whether source-evidence, context-gathering, and answer-generation scoring are supported, diagnostic-only, or not run.cases: hashed case ids with domain, environment family, question type, mapping status, and candidate counts only.arms:lexical_baselineplusaippocampus_continuity_context. The continuity arm reports routing-only AIppo/Ficus/learning guidance and whether non-lexical guidance changes the context-pack route; activation packets are not factual evidence and still require source reopen.cannot_claim: legacy compatibility boundary field for V2 source-evidence hit rate, MRR, answer accuracy, LAFS, SOTA, and benchmark-grade context-gathering score limits.
V2 official-pilot decision reports have
kind: aippocampus_longmemeval_v2_official_pilot_decision and include:
decision: the tiny official answer/latency pilot route, default and hard maximum question counts, and the run-order checklist.official_harness_contract: upstream Memory API method shape, required input files, fixed reader/evaluator configuration, and expected output layers.adapter_contract: localaippocampus_context_providerMemory adapter boundary and ignored official-checkout integration path.metric_separation: memory-context quality, answer accuracy, reader/evaluator dependency, and memory-query latency as separate layers.privacy_and_artifact_policy: ignored local official checkout/data/output policy plus sanitized aggregate-only publication requirements.cannot_claim: legacy compatibility boundary field for V2 answer accuracy, LAFS, leaderboard readiness, SOTA, source-evidence R@K/MRR, and broad memory-superiority limits.
When a future run changes what the project can claim, update
stage-0-5-readiness.md. If it only records a dated
run, update this page and keep
benchmark-evidence-map.md as a pointer map.