core/evals/introspection/runner.py
Shay 819c8b81ac feat(phase3): compositionality, multi-step-reasoning, introspection, cross-domain-transfer v1
Spreads the four remaining Phase 3 lanes to map the full reasoning-
depth surface alongside inference-closure (already landed at e509e0d).
Each lane is a v1 honest probe per the roadmap; engineering work
follows once the full surface is visible.

Results across all five Phase 3 lanes:

  lane                      split        primary signal  foundation
  inference-closure         public/v1    0.0             1.0 / 1.0
  inference-closure         holdouts/v1  0.0             1.0 / 1.0
  compositionality          public/v1   0.0625 (1/16)   1.0 / 1.0
  compositionality          holdouts/v1  0.0             1.0 / 1.0
  multi-step-reasoning      public/v1    0.0             1.0 / 1.0
  multi-step-reasoning      holdouts/v1  0.0             1.0 / 1.0
  introspection             public/v1    0.0 (no api)    n/a
  introspection             holdouts/v1  0.0             n/a
  cross-domain-transfer     public/v1    0.0             1.0 / 1.0
  cross-domain-transfer     holdouts/v1  0.0             1.0 / 1.0

Foundation guarantees (storage + replay) intact across every lane
that has them. The reasoning-depth signal is uniformly zero. The
five lanes triangulate four architectural gaps:

  Gap 1. generate/graph_planner.py has no transitive composition.
  Gap 2. field/propagate.py has no derivable-but-not-asserted recall.
  Gap 3. core/cognition/explain.py module does not exist.
  Gap 4. no structural-pattern recogniser (cross-subdomain transfer).

Gaps 1, 2, 4 cluster on the same code surface and may close together
as a single bounded PR. Gap 3 is independent module-creation work.

Lane scaffolding mirrors inference-closure (contract.md, runner.py,
dev + public/v1 + holdouts/v1 cases.jsonl, baselines/v1_structural_zero.json,
gaps.md). All runners are parallel-safe and use the standard
run_lane(cases, *, config, workers) interface.

Per-lane gaps.md records the engineering shape for v2 plus future
directions worth not forgetting:
  - compositionality/gaps.md: metaphor is compositionality with
    selective property transfer; building it is correctly downstream
    of closing this lane.
  - cross-domain-transfer/gaps.md: metaphor + narrative as
    cross-domain operators; narrative requires the Agency open-scope
    decision to pin first.
  - introspection/gaps.md: explain API is also the substrate for
    first-person narrative self-account.

Recommended v2 sequence in docs/PROGRESS.md:
  1. Pin Agency + Tool-use open-scope decisions (deadline: before
     Phase 3 engineering).
  2. Engineer Gaps 1 + 2 as one bounded PR.
  3. Engineer Gap 3 independently.
  4. Re-author cross-domain-transfer v2 with matched-control
     contract refinement.

Phase 3 v1 exit: 0/5 lanes passing, which is the expected v1 floor.
CLI suites smoke / cognition / teaching pass; no regression on
Phase 2.
2026-05-16 14:48:36 -07:00

144 lines
4.4 KiB
Python

"""introspection eval lane runner.
For each case:
1. Run the prompt on a fresh CognitiveTurnPipeline and capture
(surface_A, trace_hash_A, turn_id_A).
2. Attempt to call an `explain(turn_id)` function from
`core.cognition`. v1 expects this to raise ImportError; the
runner catches it and scores M1 = False.
3. When (2) succeeds, run a fresh pipeline on the produced account
and capture (surface_B, trace_hash_B).
4. Score round-trip overlap.
Conforms to the framework interface: run_lane(cases, config=None) -> report.
"""
from __future__ import annotations
import re
from dataclasses import dataclass, field
from typing import Any
from chat.runtime import ChatRuntime
from core.cognition.pipeline import CognitiveTurnPipeline
from core.config import RuntimeConfig
from evals.parallel import run_cases_parallel
@dataclass(slots=True)
class LaneReport:
metrics: dict[str, Any] = field(default_factory=dict)
case_details: list[dict[str, Any]] = field(default_factory=list)
_TOKEN_BOUND = re.compile(r"[a-z0-9]+")
def _tokens(text: str) -> set[str]:
return set(_TOKEN_BOUND.findall((text or "").lower()))
def _try_import_explain():
"""Return the explain callable or None when the API is absent."""
try:
from core.cognition import explain # type: ignore[attr-defined]
except (ImportError, AttributeError):
return None
return explain
def _run_case(case: dict[str, Any]) -> dict[str, Any]:
prompt: str = case["prompt"]
runtime = ChatRuntime()
pipeline = CognitiveTurnPipeline(runtime)
try:
result_a = pipeline.run(prompt, max_tokens=12)
except ValueError:
return {
"id": case.get("id", ""),
"explain_api_present": False,
"account_nonempty": False,
"round_trip_surface_match": False,
"round_trip_trace_match": False,
"passed": False,
}
surface_a = result_a.surface or ""
trace_a = result_a.trace_hash
explain = _try_import_explain()
api_present = explain is not None
account = ""
surface_b = ""
trace_b = ""
if api_present:
try:
account = explain(result_a) or "" # type: ignore[misc]
except Exception:
account = ""
if account:
rt2 = ChatRuntime()
pipe2 = CognitiveTurnPipeline(rt2)
try:
result_b = pipe2.run(account, max_tokens=12)
surface_b = result_b.surface or ""
trace_b = result_b.trace_hash
except ValueError:
pass
account_nonempty = len(_tokens(account)) >= 5
a_tokens = _tokens(surface_a)
b_tokens = _tokens(surface_b)
if a_tokens:
coverage = len(a_tokens & b_tokens) / len(a_tokens)
else:
coverage = 0.0
surface_match = coverage >= 0.60
trace_match = bool(trace_a) and trace_a == trace_b
passed = api_present and account_nonempty and surface_match
return {
"id": case.get("id", ""),
"explain_api_present": api_present,
"account_nonempty": account_nonempty,
"round_trip_surface_match": surface_match,
"round_trip_trace_match": trace_match,
"surface_token_coverage": round(coverage, 4),
"passed": passed,
}
def run_lane(
cases: list[dict[str, Any]],
*,
config: RuntimeConfig | None = None,
workers: int | None = None,
) -> LaneReport:
if not cases:
return LaneReport(metrics={}, case_details=[])
_ = config
case_details = run_cases_parallel(cases, _run_case, workers=workers)
total = len(case_details)
api = sum(1 for d in case_details if d["explain_api_present"]) / total
nonempty = sum(1 for d in case_details if d["account_nonempty"]) / total
surf = sum(1 for d in case_details if d["round_trip_surface_match"]) / total
trace = sum(1 for d in case_details if d["round_trip_trace_match"]) / total
overall = sum(1 for d in case_details if d["passed"]) / total
overall_pass = api >= 0.95 and nonempty >= 0.95 and surf >= 0.50
metrics: dict[str, Any] = {
"explain_api_present_rate": round(api, 4),
"account_nonempty_rate": round(nonempty, 4),
"round_trip_surface_match_rate": round(surf, 4),
"round_trip_trace_match_rate": round(trace, 4),
"all_pass_rate": round(overall, 4),
"case_count": total,
"overall_pass": overall_pass,
}
return LaneReport(metrics=metrics, case_details=case_details)