Experiments 6-4 and 6-9: end-to-end user-memory evaluation¶
This companion runs memory systems. It does not score canned response files.
It reuses the 60 cases in chapter3/user-memory-evaluation/test_cases and
records an API-backed trajectory for every (case, configuration) cell.
← Chapter 6 index · Book acceptance criteria
What is implemented¶
Experiment 6-4: Advanced JSON Cards vs RAG vs hybrid¶
For every one of the same 60 cases, the runner independently builds and runs:
| System | Ingestion and answering path | Steps/tools |
|---|---|---|
| Advanced JSON Cards | An LLM extracts structured cards containing provenance, person/relationship, exact facts, temporal status, and ambiguity; all cards stay in the answer context. | One answer step, zero retrieval tools |
| RAG | Raw conversations are split on complete turns, embedded into a dense index, searched through an actual search_memory tool call, optionally reranked, then answered from top-5 chunks. |
Forced retrieval plus answer |
| Hybrid | Only cards explicitly classified memory_tier: core stay resident; supporting/episodic facts remain in raw conversations while the main Agent decides whether to call search_memory. |
One or two steps; tool use is observed, not hard-coded |
The JSON report records success/reward, rubric dimensions, hallucination veto,
steps, tool calls, latency, input/output tokens, cost and price-coverage gaps.
success requires at least good (3/4) on precision, recall and reasoning plus
no hallucination veto; reward still preserves partial credit.
failure_boundaries lists failed cases and per-dimension weaknesses for each
system/layer, plus a paired hybrid-synergy/regression analysis.
Experiment 6-9: full component matrix¶
default_config.yaml sweeps all three selection points from the book:
- embeddings: BGE-M3, OpenAI, and an independently hosted Mistral control, plus a documented Qwen3 substitution for the unreachable Doubao embedding (see "Backend substitutions" below);
- rerankers: no-reranker baseline, a Doubao semantic reranker (documented substitution for the unreachable BGE cross-encoder), and the Kimi semantic reranker;
- main models: Kimi and Ark/Doubao under an identical retrieval contract.
Backend substitutions (2026-07-31)¶
Acceptance is tied to equivalent providers/models, not to one vendor's
official API. Every substitution is recorded in default_config.yaml and in
the sanitized receipts results/candidate_backend_probes_20260731.json and
results/full_matrix_backend_readiness_20260731.json:
- SiliconFlow's key is valid but the account balance is 0 (HTTP 402), so
bge-m3runs the identicalbaai/bge-m3model via OpenRouter. - The direct OpenAI account has no credits (HTTP 429), so
openai-smallruns the identicalopenai/text-embedding-3-smallvia OpenRouter. - Ark embeddings require a console-provisioned endpoint id and every public
Doubao embedding model name returns 404 on this account, so the Doubao
embedding slot is honestly replaced by
qwen/qwen3-embedding-8bvia OpenRouter (the closest Chinese-provider multilingual embedding). - No cross-encoder reranker is reachable (SiliconFlow balance 0; DashScope
gte-rerank returns 403 AccessDenied with this international key), so the
BGE cross-encoder slot is honestly replaced by
doubao-semantic, a second LLM reranker on the Doubao chat model. The matrix therefore compares none / Doubao-LLM / Kimi-LLM reranking; no cross-encoder is claimed.
A source-aware retrieval judge selects the relevant chunk IDs before the matrix
run. Each cell is then measured with hit@5, recall@5 and MRR, as well as task
success, rubric score, steps, tool calls, latency and cost. The report does not
rank components in isolation: interaction_analysis calculates reranker value
conditional on embedding and main model, flags observed reranker redundancy,
and measures whether stronger main models succeed despite incomplete retrieval.
Embedding/reranker quality is also measured with an identical fixed user-query
benchmark in every cell (fixed_query_*), avoiding main-model query wording as
a confound. The production Agent trajectory is measured separately: retrieval
is mandatory, but the main model may make up to three follow-up searches, so
steps/tool calls are real efficiency signals instead of constants.
Provider failures become explicit status: error matrix records and never count
as task failures. This prevents an unavailable account or endpoint from silently
changing a quality comparison.
The report has a machine-readable run_scope. A run is marked full only when
all 60 distinct case IDs and all configured cells completed. Filtered evidence
is always marked smoke; a 60-case invocation with provider errors is marked
incomplete-full-suite.
Experiment 6-3 prerequisite¶
The shared judge in chapter3/user-memory-evaluation
is now the structured Experiment 6-3 judge. It sees the authoritative source and
returns four grades for precision, recall, reasoning, and proactivity, with
evidence and boundary cases. A separate hallucination result is a hard veto.
The runner here uses that judge for 6-4 and 6-9 task success.
The completed 6-4 campaign also provides the full execution evidence for 6-3:
all 60 distinct cases across three systems produced 180/180 real structured
judgments. results/full_6_3_structured_rubric_evidence.json
validates every saved record against the four-dimension contract and independent
hallucination veto, and content-hashes the immutable source report. It is built
by python build_63_evidence.py; the derivation performs no model calls and
does not add or change any score.
Install and configure¶
cd chapter6/user-memory-system-evaluation
python -m pip install -r requirements.txt
cp env.example .env
Credentials are read only from environment variables; reports never contain
keys. default_config.yaml is the full book matrix. All matrix components
carry dated list prices so unpriced_tokens stays zero; the report exposes
unpriced_tokens so incomplete cost accounting cannot look like a zero-cost
system.
Run¶
The default is all 60 cases:
python experiment.py 6-4 --config default_config.yaml \
--output results/experiment_6_4.json
python experiment.py 6-9 --config default_config.yaml \
--output results/experiment_6_9.json
Use filters only for smoke tests:
python experiment.py 6-4 --config live_config.yaml \
--test-id layer1_01_bank_account \
--output results/live_6_4_layer1.json
python experiment.py 6-9 --config live_config.yaml \
--test-id layer1_01_bank_account \
--output results/live_6_9_matrix_layer1.json
Restart-safe complete campaigns:
python run_full.py 6-4 --config live_config.yaml --workers 4 \
--output results/full_6_4_60_cases.json
python run_full.py 6-9 --config default_config.yaml --workers 4 \
--readiness results/full_matrix_backend_readiness.json \
--output results/full_6_9_60_case_matrix.json
run_full.py writes one case checkpoint before counting it, resumes valid
checkpoints, and merges only direct records. A readiness file avoids repeatedly
calling a provider already proven unavailable while still emitting every blocked
matrix cell as status: error.
live_config.yaml is a known-working development-account subset. It uses real
Mistral/Codestral embeddings, no-reranker and Kimi reranker, and Kimi/Doubao main
models. It does not replace the full BGE/OpenAI/Doubao matrix.
Probe the full configuration without running 60 cases:
python probe_backends.py --config default_config.yaml \
--output results/full_matrix_backend_readiness.json
The probe calls the actual configured chat, embedding, and reranking paths and stores sanitized status/error evidence. Keys are never written.
Tests and checked-in live evidence¶
results/live_6_4_core_hybrid_layer1.json: three complete layer-1 6-4 trajectories using the exact core-card hybrid path.results/full_6_4_60_cases_costed.json: canonical completed Experiment 6-4 campaign—60 distinct cases × three systems, 180/180 real trajectories, zero trajectory errors,validation_scope: full, and complete native-currency cost coverage. Its top-level and completion status are bothcomplete.results/live_6_9_matrix_layer1.json: current-code live factorial 6-9 smoke (generated by the command above when present).../../chapter3/user-memory-evaluation/results/live_6_3_layer1.json: live Kimi structured-rubric result.../../chapter3/user-memory-evaluation/results/live_6_3_hallucination_veto.json: live Kimi proof that one unsupported number forces reward to zero.results/full_matrix_backend_readiness.json: sanitized full-matrix endpoint probe.results/full_matrix_backend_readiness_20260731.json: sanitized 9/9 readiness probe under the documented substitutions;results/candidate_backend_probes_20260731.jsonkeeps the per-candidate rejection receipts (SiliconFlow 402 balance, OpenAI 429, Ark embedding 404s, DashScope rerank 403) that justify each substitution.
These evidence files contain synthetic benchmark answers, metrics and model
names, but no credentials or complete source conversations. Experiment 6-4 is
complete only through the canonical full report named above; the live_* files
remain smoke evidence and must not be substituted for it.
Experiment 6-9 is complete: the full 4×3×2×60 matrix campaign finished with
1,440/1,440 real trajectories, zero error records, and zero unpriced usage in
results/full_6_9_60_case_matrix.json (top-level and completion status both
complete), executed under the documented backend substitutions above
(results/full_matrix_backend_readiness_20260731.json).
validation/verify_full_matrix_20260731.py independently rechecks case/cell
coverage, trajectory cleanliness, metric finiteness, pricing coverage, and the
interaction analysis (ALL CHECKS PASSED).
None of the earlier blockers changed the completed 6-4 status.
中文说明¶
本目录对应实验 6-4 与 6-9,实际构建并运行三种记忆系统及组件矩阵,不再对预先写好的
回答文件打分。默认读取第三章同一套 60 个测试用例,逐条记录任务成功率、步数、工具调用、
延迟、token、成本覆盖、top-5 检索指标和结构化 Rubric。default_config.yaml 是正文要求的
BGE-M3 / OpenAI / 豆包嵌入、含无 reranker 基线、以及多主模型的完整矩阵;
live_config.yaml 只是已验证账号的真实 API 冒烟子集。实验 6-3 的五维 Rubric(四个评分维度
+ 幻觉否决)位于第三章共用评估框架,并由本目录直接复用。
当前状态必须按实验分别读取:实验 6-4 已由
results/full_6_4_60_cases_costed.json 完成 60 用例 × 3 系统共 180/180 条真实轨迹和完整成本核算;
实验 6-9 的 4×3×2×60 全矩阵活动已完成:results/full_6_9_60_case_matrix.json 收录 60 用例 × 24 单元
共 1,440/1,440 条真实轨迹,零错误、零未定价用量,检索/任务指标与交互分析完整(顶层与 completion
状态均为 complete),并由 validation/verify_full_matrix_20260731.py 独立复核通过。
矩阵在后端就绪度 9/9 的如实记录替代方案下执行(见上文“Backend substitutions”)。