From cd720b31d851da905b4bf6db241dcfa7b9c652cc Mon Sep 17 00:00:00 2001 From: Shay Date: Sun, 24 May 2026 11:25:32 -0700 Subject: [PATCH] test(cognition): update term_capture_rate baseline from 0.9167 to 1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit unknown_logos_019 now correctly surfaces "light" as a pack-resident token near the logos versor — producing term_capture_rate 1.0 on both main and Phase 3. The 0.9167 pin was stale relative to a surface change already on main; Phase 3 did not introduce this shift. --- evals/anti_regression/run_demo.py | 2 +- tests/test_adr_0085_gloss_aware_cause.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/evals/anti_regression/run_demo.py b/evals/anti_regression/run_demo.py index 27108c5a..9448e92e 100644 --- a/evals/anti_regression/run_demo.py +++ b/evals/anti_regression/run_demo.py @@ -84,7 +84,7 @@ def _make_regressed_replay( baseline = { "intent_accuracy": 1.0, "surface_groundedness": 1.0, - "term_capture_rate": 0.9167, + "term_capture_rate": 1.0, "versor_closure_rate": 1.0, } candidate = dict(baseline) diff --git a/tests/test_adr_0085_gloss_aware_cause.py b/tests/test_adr_0085_gloss_aware_cause.py index 9ee00136..d08380c6 100644 --- a/tests/test_adr_0085_gloss_aware_cause.py +++ b/tests/test_adr_0085_gloss_aware_cause.py @@ -134,7 +134,7 @@ class TestRuntimeDispatch: _EXPECTED_COGNITION_METRICS = { "total": 13, "intent_accuracy": 1.0, - "term_capture_rate": 0.9167, + "term_capture_rate": 1.0, "surface_groundedness": 1.0, "versor_closure_rate": 1.0, }