ADR-0044 — Medical / clinical ethics pack (worked-example domain pack).
Ships packs/ethics/medical_clinical_ethics_v1.json with six commitments
partitioned across all three remediation tiers:
- refuse: no_dosing_recommendation, no_emergency_triage_authority
- hedge: defer_diagnosis_to_clinician, surface_evidence_grade
- audit: disclose_no_clinician_relationship, respect_patient_autonomy
Ratified end-to-end through scripts/ratify_ethics_pack.py (PACK_IDS
extended). Production-mode load via load_ethics_pack succeeds.
ChatRuntime composition includes universal safety floor + every medical
commitment. tests/test_medical_clinical_ethics_pack.py (8 tests) gates
file existence, sealed report, disjoint refusal/hedge lists, and
pack-swap visibility (default pack does NOT carry medical commitments).
ADR-0045 — Long-context recall: CORE vs transformer baselines.
Adds evals/long_context_cost/comparison_runner.py with a deterministic
needle-in-a-haystack measurement at N ∈ {100, 1_000, 10_000, 100_000}.
CORE recall = 100% at every tested N by exact cga_inner scan.
Paired with frozen citations of published transformer NIAH numbers in
evals/long_context_cost/baselines/transformer_long_context.json:
Claude 2.1 (200k, 50%), GPT-4 Turbo 128k (~71%), Gemini 1.5 Pro (99.7%),
NVIDIA RULER (varies). Each citation carries source + url.
The two components measure different inputs (synthetic versors vs NL
needles) and are not directly comparable benchmark-for-benchmark. The
comparison is at the architectural level — exact-scan recall vs
attention-based probabilistic recall. Scope and limits documented in
the ADR. tests/test_long_context_comparison.py (5 tests) gates schema,
CORE recall == 100%, and baseline citation presence.
CLI integration: two new demo targets with study-grade preambles.
- core demo pack-measurements (ADR-0043 — wired)
- core demo long-context-comparison (ADR-0045)
README + docs/PROGRESS.md cheatsheets updated. docs/decisions/README.md
index extended with ADR-0044 + ADR-0045; pack-layer chain title now
"ADR-0027 through ADR-0045".
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
5.9 KiB
ADR-0045 — Long-context recall: CORE vs transformer baselines
Status: Accepted (2026-05-17)
Context
The long-context-cost lane (evals/long_context_cost/runner.py)
publishes CORE's vault-recall latency as a function of stored-entry
count N (linear scan, ~0.22ms @ 1k, ~21ms @ 100k). What the lane
does not publish is a comparison against the alternative
architecture every reviewer asks about: a transformer's in-context
recall.
The architectural claim CORE has made since ADR-0001 is that vault
recall is exact by construction — cga_inner scan over every
stored versor, no approximate index, no embedding compression, no
attention bottleneck. That claim is true by inspection of
vault/store.py, but it has not been published as a measurement
alongside the transformer numbers it contrasts with.
Decision
Ship a deterministic needle-in-a-haystack measurement against CORE's
vault at multiple N, paired with frozen citations of published
transformer long-context recall numbers.
Component 1 — CORE measurement
evals/long_context_cost/comparison_runner.py plants a distinctive
versor at a known index alongside N-1 random distractors, queries
the vault, and asserts top_k=1 returns the planted needle. Default
N ∈ {100, 1_000, 10_000, 100_000}.
Expected recall: 1.0 at every N by construction. If it ever drops, the vault has been broken.
Component 2 — Transformer baselines
evals/long_context_cost/baselines/transformer_long_context.json
freezes the comparator numbers as cited published figures:
| System | Context | Reported recall |
|---|---|---|
| Anthropic Claude 2.1 | 200k | 50% (NIAH, no prompt engineering) |
| OpenAI GPT-4 Turbo 128k | 128k | ~71% (NIAH aggregate) |
| Google Gemini 1.5 Pro | 1M | 99.7% (NIAH headline) |
| NVIDIA RULER (eval) | 131k | varies — most models drop below 80% well before nominal context limit |
These are not re-measured here. Citations point to the original vendor / paper. When a new published number warrants an update, the baselines file is the single edit point.
Combined artifact
evals/long_context_cost/results/comparison_v1.json carries both:
the CORE measurement and the frozen transformer citations, with a
claim_supported boolean gating the headline.
tests/test_long_context_comparison.py (5 tests) locks:
- Schema stability.
claim_supported == Trueand CORE recall_pct == 100.0 across the tested N range.- Baselines retain
source+urlfor every entry. - The default N range exercises at least 100k.
- The
core_guaranteeblock advertisesrecall_kind == "exact_cga_inner_scan".
Scope and limits of the comparison
The two components measure different inputs. CORE's needle-in-a-haystack
is over synthetic float32 versors of shape (32,); the cited transformer
baselines are over natural-language needles in natural-language haystacks.
The comparison is at the architectural level — exact-scan recall vs
attention-based probabilistic recall — and is not a benchmark-for-benchmark
score.
What the CORE measurement does establish:
- The
cga_inner-based recall invault/store.pyreturns the planted needle at top-1 for every tested N, at all four scales. - This holds independent of vault size up to 100,000 entries (the largest
N reported here; the latency curve in
results/v1_metrics.jsonextends the same primitive to 100k with linear cost).
What the cited baselines establish:
- Published transformer NIAH recall is < 100% at moderate-to-long context lengths. Headline figures range from 50% (Claude 2.1 at 200k tokens without prompt engineering) to 99.7% (Gemini 1.5 Pro at 1M tokens, single-needle).
- RULER (Hsieh et al., 2024) shows most open-source models' effective context length is materially shorter than their advertised limit.
The architectural difference is structural, not benchmark-tuned: CORE's recall path has no approximation, no index compression, and no learned component, so its correctness on synthetic versors generalizes to any content type the vault stores. Transformer NIAH performance is itself benchmark-specific and varies with elicitation, needle depth, and context-length stress.
Consequences
Positive.
- The architectural claim about exact recall is now a published measurement, not a docstring.
- Comparison is honest: CORE numbers are measured here; transformer numbers are cited from published sources, not strawmanned.
- The needle-in-a-haystack test is structural — any future change to the vault that breaks exact top-1 recall fails the suite.
Trade-offs.
- The CGA inner product for these synthetic float32 vectors can
produce non-finite scores at conformal-point-at-infinity-like
configurations. Scores are sanitized to
nullin the JSON artifact; correctness (top-1 is the needle) is the load-bearing signal and is unaffected. - The transformer baselines are point-in-time. They will need to be refreshed as vendors publish new long-context recall figures.
- We deliberately do not run a transformer head-to-head here. That would require API budget and harness work disproportionate to the worked claim. The frozen-citations approach honors the claim ("CORE is exact") without overreaching ("CORE beats every transformer on every benchmark").
How to verify
PYTHONPATH=. python3 evals/long_context_cost/comparison_runner.py
PYTHONPATH=. python3 -m pytest tests/test_long_context_comparison.py -q
Where it lives
evals/long_context_cost/comparison_runner.pyevals/long_context_cost/baselines/transformer_long_context.jsonevals/long_context_cost/results/comparison_v1.jsontests/test_long_context_comparison.py