File size: 29,785 Bytes
881f9f2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 | """
LLM-as-Judge scorer for plan-execute trajectory artifacts.
Implements the 6-dimension rubric from the AssetOpsBench paper using
Llama-4-Maverick-17B-128E (or any WatsonX / LiteLLM model).
Usage
-----
Score a single trajectory file:
python scripts/judge_trajectory.py \\
--trajectory benchmarks/cell_Y_plan_execute/raw/<run>/foo.json \\
--scenario data/scenarios/aob_fmsr_01_list_failure_modes.json \\
--run-meta benchmarks/cell_Y_plan_execute/raw/<run>/meta.json \\
--out results/metrics/scenario_scores.jsonl
Score all trajectory files in a run directory automatically:
python scripts/judge_trajectory.py \\
--run-dir benchmarks/cell_Y_plan_execute/raw/<run> \\
--scenario-dir data/scenarios \\
--out results/metrics/scenario_scores.jsonl
Environment variables (same as the rest of the harness):
WATSONX_APIKEY IBM WatsonX API key
WATSONX_PROJECT_ID IBM WatsonX project ID
WATSONX_URL IBM WatsonX endpoint (optional)
LITELLM_API_KEY LiteLLM proxy key (alternative backend)
LITELLM_BASE_URL LiteLLM proxy URL (alternative backend)
REPO_ROOT Override the auto-detected repository root used to
produce repo-relative paths in JSONL and judge logs.
The default judge model is watsonx/meta-llama/llama-4-maverick-17b-128e-instruct-fp8.
Override with --judge-model.
Output format (scenario_scores.jsonl)
--------------------------------------
One JSON object per line (newline-delimited JSON / JSONL).
Schema version: v1. See docs/judge_schema.md for field definitions.
"""
from __future__ import annotations
import argparse
import json
import os
import re
import sys
import textwrap
from datetime import datetime, timezone
from pathlib import Path
from typing import Any
# ---------------------------------------------------------------------------
# Repo-root relative path helper
# ---------------------------------------------------------------------------
# Stable regardless of the caller's working directory. Can be overridden via
# the REPO_ROOT env var for unusual checkout layouts.
_REPO_ROOT = Path(
os.environ.get("REPO_ROOT", Path(__file__).resolve().parent.parent)
).resolve()
# Ensure repo root is on sys.path so `from scripts.X import Y` resolves when
# this file is invoked as `python scripts/judge_trajectory.py` (which puts
# scripts/, not the repo root, on sys.path by default). Mirrors the same
# guard in scripts/aat_runner.py.
if str(_REPO_ROOT) not in sys.path:
sys.path.insert(0, str(_REPO_ROOT))
def _rel(p: Path) -> str:
"""Return a repo-root-relative POSIX path, falling back to absolute."""
try:
return p.resolve().relative_to(_REPO_ROOT).as_posix()
except ValueError:
return p.resolve().as_posix()
# ---------------------------------------------------------------------------
# Rubric prompt — adapted from AssetOpsBench evaluation_agent
# ---------------------------------------------------------------------------
_SYSTEM_PROMPT = textwrap.dedent("""\
You are a critical reviewer evaluating an AI agent's response to an industrial
asset operations task. Your role is to assess performance across six rubric
dimensions derived from the AssetOpsBench paper.
Respond ONLY with a valid JSON object — no markdown, no extra text.
""")
_USER_PROMPT_TEMPLATE = textwrap.dedent("""\
## Task
{question}
## Expected Behaviour (Characteristic Answer)
{characteristic_form}
## Agent Plan
{plan_summary}
## Agent Trajectory (tool calls and results)
{trajectory_summary}
## Agent Final Answer
{answer}
---
Evaluate across the six dimensions below. For each dimension output true (good) or false (bad).
"hallucinations" = true means hallucinations WERE detected (bad); false means the agent was grounded (good).
Output exactly this JSON object and nothing else:
{{
"task_completion": true_or_false,
"data_retrieval_accuracy": true_or_false,
"generalized_result_verification": true_or_false,
"agent_sequence_correct": true_or_false,
"clarity_and_justification": true_or_false,
"hallucinations": true_or_false,
"suggestions": "brief actionable note, or empty string if none"
}}
""")
# ---------------------------------------------------------------------------
# Dimension → WandB field mapping (for downstream aggregation)
# ---------------------------------------------------------------------------
# Maps per-scenario boolean dimension names to the WandB run-level mean field names
# defined in docs/wandb_schema.md.
WANDB_DIM_MAP = {
"task_completion": "judge_dim_task_completion_mean",
"data_retrieval_accuracy": "judge_dim_correctness_mean",
"generalized_result_verification": "judge_dim_correctness_mean", # contributes to same mean
"agent_sequence_correct": "judge_dim_tool_usage_mean",
"clarity_and_justification": "judge_dim_efficiency_mean",
"hallucinations": "judge_dim_grounding_mean", # inverted: false=good
}
_BOOLEAN_DIMS = [
"task_completion",
"data_retrieval_accuracy",
"generalized_result_verification",
"agent_sequence_correct",
"clarity_and_justification",
"hallucinations",
]
_DEFAULT_JUDGE_MODEL = "watsonx/meta-llama/llama-4-maverick-17b-128e-instruct-fp8"
_PASS_THRESHOLD = 0.6 # 4 out of 6 dimensions
# Bump whenever the judge rubric, prompt template, or scoring dimensions change.
# Existing rows dedupe by this value unless callers pass --force.
_JUDGE_PROMPT_VERSION = "assetopsbench-6d-v1"
# ---------------------------------------------------------------------------
# LiteLLM helper
# ---------------------------------------------------------------------------
def _call_judge(
prompt_user: str,
judge_model: str,
max_retries: int = 3,
) -> tuple[dict, str]:
"""Call the judge model and parse the 6-dimension JSON response.
Returns
-------
(parsed_dims, raw_response)
parsed_dims — dict with the 6 boolean keys + suggestions
raw_response — verbatim text returned by the model (for audit logging)
"""
try:
import litellm # type: ignore
except ImportError:
sys.exit(
"litellm is required. Run from the AssetOpsBench venv: "
"source AssetOpsBench/.venv/bin/activate"
)
# Bridge documented WATSONX_* env vars to the WX_* names litellm's
# newer WatsonX provider expects. The default judge model (and most
# team judge configurations) is a watsonx/* model. Shared helper
# covers the same case in the generator + AaT runner. (#177)
if judge_model.strip().lower().startswith("watsonx/"):
from scripts.watsonx_env import propagate_watsonx_env
propagate_watsonx_env()
messages = [
{"role": "system", "content": _SYSTEM_PROMPT},
{"role": "user", "content": prompt_user},
]
last_error: Exception | None = None
last_raw = ""
for attempt in range(max_retries):
try:
response = litellm.completion(
model=judge_model,
messages=messages,
temperature=0.0,
max_tokens=512,
)
last_raw = response.choices[0].message.content or ""
parsed = _parse_judge_json(last_raw)
if parsed is not None:
return parsed, last_raw
print(
f" [judge] attempt {attempt + 1}: invalid/incomplete judge response,"
" retrying...",
file=sys.stderr,
)
except Exception as exc:
last_error = exc
print(
f" [judge] attempt {attempt + 1}: API error: {exc}",
file=sys.stderr,
)
raise RuntimeError(
f"Judge failed after {max_retries} attempts. Last error: {last_error}"
)
def _parse_judge_json(raw: str) -> dict | None:
"""Extract, parse, and validate the JSON block from the judge response.
Returns the parsed dict only if all six rubric keys are present and their
values are actual JSON booleans. Returns None otherwise so the caller can
retry rather than silently persisting a corrupt score.
"""
raw = raw.strip()
# Try direct parse first, then extract {...} block as fallback
candidate: dict | None = None
try:
candidate = json.loads(raw)
except json.JSONDecodeError:
match = re.search(r"\{.*\}", raw, re.DOTALL)
if match:
try:
candidate = json.loads(match.group(0))
except json.JSONDecodeError:
pass
if candidate is None:
return None
# Require all six rubric keys to be present
missing = [dim for dim in _BOOLEAN_DIMS if dim not in candidate]
if missing:
print(
f" [judge] response missing rubric keys: {missing}",
file=sys.stderr,
)
return None
# Require rubric values to be real JSON booleans — reject string "true"/"false",
# integers, etc. to prevent silent score corruption.
non_bool = [dim for dim in _BOOLEAN_DIMS if not isinstance(candidate[dim], bool)]
if non_bool:
print(
" [judge] non-boolean rubric values: "
+ ", ".join(f"{d}={candidate[d]!r}" for d in non_bool),
file=sys.stderr,
)
return None
return candidate
# ---------------------------------------------------------------------------
# Score computation
# ---------------------------------------------------------------------------
def _compute_score(dims: dict) -> float:
"""Compute a scalar score in [0, 1] from the 6 boolean dimensions.
Each dimension contributes 1/6 to the total. For 'hallucinations',
the score contribution is inverted: False (no hallucinations) = good = 1/6.
Raises ValueError if dims is missing any expected key or contains non-bool
values — callers must validate before calling this function.
"""
missing = [dim for dim in _BOOLEAN_DIMS if dim not in dims]
if missing:
raise ValueError(f"dims missing expected keys: {missing}")
non_bool = [dim for dim in _BOOLEAN_DIMS if not isinstance(dims[dim], bool)]
if non_bool:
raise ValueError(
"dims has non-boolean values: "
+ ", ".join(f"{d}={dims[d]!r}" for d in non_bool)
)
total = 0.0
for dim in _BOOLEAN_DIMS:
val = dims[dim]
if dim == "hallucinations":
total += 0.0 if val else 1.0 # False hallucinations = good
else:
total += 1.0 if val else 0.0
return round(total / len(_BOOLEAN_DIMS), 4)
# ---------------------------------------------------------------------------
# Trajectory → prompt helpers
# ---------------------------------------------------------------------------
def _summarise_plan(plan: list[dict]) -> str:
lines = []
for step in plan:
tool = step.get("tool") or "none"
task = step.get("task", "")
server = step.get("server", "")
deps = step.get("dependencies", [])
dep_str = f" (depends on steps {deps})" if deps else ""
lines.append(
f" Step {step.get('step', '?')}: [{server}] {tool} — {task}{dep_str}"
)
return "\n".join(lines) if lines else "(no plan)"
def _summarise_trajectory(trajectory: Any, max_chars: int = 8000) -> str:
"""Format a trajectory (any shape) as JSON text for the judge prompt.
Mirrors AOB's upstream `feat/evaluation-module` design (see
`src/evaluation/runner.py:_trajectory_to_text`): dump the trajectory
to JSON and let the judge LLM parse the shape itself. Works for all
runner outputs we emit:
- Plan-Execute / Verified PE: list of step dicts with
``step / task / server / tool / tool_args / response / success / error``.
- Agent-as-Tool (OpenAI Agents SDK): list of turn dicts with
``turn / role / content / tool_calls[]`` (each tool_call carries
``name / arguments / call_id / output``).
- Upstream AOB ``plan-execute`` CLI: same as PE shape above.
Earlier per-shape structured-text formatting drove judge prompts
that rendered empty for AaT / SDK shapes (no ``step / server / tool``
keys at the top level). The JSON-dump approach is shape-agnostic,
matches AOB's upstream contract, and trades a small amount of prompt
formality for full coverage across runners. Cap at 8000 chars to
match AOB's ``trajectory_text[:8000]`` prompt slice.
"""
if not trajectory:
return "(no trajectory)"
try:
full = json.dumps(trajectory, indent=2, default=str)
except (TypeError, ValueError):
full = str(trajectory)
if len(full) > max_chars:
full = full[:max_chars] + "\n...(truncated)"
return full
def _extract_trial_index(trajectory_path: Path) -> int:
"""Derive trial index from filename pattern ``*_runNN*`` (1-indexed).
Falls back to 1 if no match is found.
"""
match = re.search(r"_run(\d+)", trajectory_path.stem)
return int(match.group(1)) if match else 1
# ---------------------------------------------------------------------------
# Main scoring logic
# ---------------------------------------------------------------------------
def score_trajectory(
trajectory_path: Path,
scenario_path: Path,
meta_path: Path | None,
judge_model: str,
out_path: Path,
log_dir: Path | None = None,
) -> dict:
"""Score one trajectory file.
Appends a JSONL record to out_path. If log_dir is given, also writes a
full judge audit log (prompt + raw Maverick response + parsed dims) to
``log_dir/<run_name>/<scenario_id>_runNN_judge_log.json``.
"""
traj_data = json.loads(trajectory_path.read_text(encoding="utf-8"))
scenario_data = json.loads(scenario_path.read_text(encoding="utf-8"))
meta_data = json.loads(meta_path.read_text(encoding="utf-8")) if meta_path else {}
# The cell-level config.json carries `experiment_cell`,
# `orchestration_mode`, `mcp_mode`, and `model_id`; those classifier
# fields are not in the per-run meta.json today. Read the cell config
# alongside meta so downstream `experiment_cell` is correct (otherwise
# every score row defaults to "Y" / "plan_execute" / "baseline" and
# Notebook 03's per-cell join collapses).
config_data: dict = {}
if meta_path is not None:
cell_config_path = meta_path.parent.parent.parent / "config.json"
if cell_config_path.exists():
try:
config_data = json.loads(cell_config_path.read_text(encoding="utf-8"))
except Exception: # never let config-read errors crash scoring
config_data = {}
def _classifier(field: str, default: str) -> str:
return meta_data.get(field) or config_data.get(field) or default
question = traj_data.get("question", "")
answer = traj_data.get("answer", "")
plan = traj_data.get("plan", [])
# Either runner shape: PE-family writes ``trajectory``; AaT writes
# ``history``; AOB plan-execute writes ``trajectory``. Take whichever
# is present (history-first matches Notebook 03's `load_*_records`,
# `run_experiment.sh _derive_success`, and
# `backfill_canonical_scenario.py _derive_success` so all four
# call sites walk the same step array). Matches AOB
# ``feat/evaluation-module`` permissiveness on
# ``PersistedTrajectory.trajectory: Any``.
trajectory = traj_data.get("history") or traj_data.get("trajectory") or []
characteristic_form = scenario_data.get("characteristic_form", "")
plan_summary = _summarise_plan(plan)
traj_summary = _summarise_trajectory(trajectory)
prompt_user = _USER_PROMPT_TEMPLATE.format(
question=question,
characteristic_form=characteristic_form,
plan_summary=plan_summary,
trajectory_summary=traj_summary,
answer=answer,
)
print(f" Calling judge ({judge_model})...", file=sys.stderr)
scored_at = datetime.now(timezone.utc).isoformat()
dims, raw_response = _call_judge(prompt_user, judge_model)
score = _compute_score(dims)
passed = score >= _PASS_THRESHOLD
run_name = meta_data.get("run_name", trajectory_path.parent.name)
scenario_id = scenario_data.get("id", "")
record = {
"schema_version": "v1",
"scored_at": scored_at,
# Join keys (align with results/README.md conventions)
"run_name": run_name,
"wandb_run_url": meta_data.get("wandb_run_url"),
"scenario_id": scenario_id,
"scenario_file": _rel(scenario_path),
"trial_index": _extract_trial_index(trajectory_path),
"experiment_cell": _classifier("experiment_cell", "Y"),
"orchestration_mode": _classifier("orchestration_mode", "plan_execute"),
"mcp_mode": _classifier("mcp_mode", "baseline"),
"model_id": _classifier("model_id", ""),
"judge_model": judge_model,
"judge_prompt_version": _JUDGE_PROMPT_VERSION,
# 6 rubric dimensions (from AssetOpsBench evaluation_agent)
"dim_task_completion": dims["task_completion"],
"dim_data_retrieval_accuracy": dims["data_retrieval_accuracy"],
"dim_generalized_result_verification": dims["generalized_result_verification"],
"dim_agent_sequence_correct": dims["agent_sequence_correct"],
"dim_clarity_and_justification": dims["clarity_and_justification"],
"dim_hallucinations": dims["hallucinations"],
# Derived aggregate
"score_6d": score,
"pass_threshold": _PASS_THRESHOLD,
"pass": passed,
"suggestions": dims.get("suggestions", ""),
"trajectory_file": _rel(trajectory_path),
}
out_path.parent.mkdir(parents=True, exist_ok=True)
with out_path.open("a", encoding="utf-8") as fh:
fh.write(json.dumps(record) + "\n")
# ------------------------------------------------------------------
# Optional: save full judge audit log for reproducibility and analysis
# ------------------------------------------------------------------
if log_dir is not None:
run_log_dir = log_dir / run_name
run_log_dir.mkdir(parents=True, exist_ok=True)
trial_index = record["trial_index"]
log_file = run_log_dir / f"{scenario_id}_run{trial_index:02d}_judge_log.json"
judge_log = {
"schema_version": "v1",
"scored_at": scored_at,
"run_name": run_name,
"scenario_id": scenario_id,
"trial_index": trial_index,
"judge_model": judge_model,
"trajectory_file": _rel(trajectory_path),
"scenario_file": _rel(scenario_path),
"prompt_system": _SYSTEM_PROMPT,
"prompt_user": prompt_user,
"raw_response": raw_response,
"parsed_dims": dims,
"score_6d": score,
"pass": passed,
}
log_file.write_text(json.dumps(judge_log, indent=2), encoding="utf-8")
print(f" Judge log saved → {log_file}", file=sys.stderr)
return record
def _score_identity(
trajectory_path: Path,
scenario_path: Path,
meta_path: Path | None,
judge_model: str,
) -> tuple[str, str, int, str, str]:
"""Return the idempotency key for a would-be score row."""
meta_data = json.loads(meta_path.read_text(encoding="utf-8")) if meta_path else {}
scenario_data = json.loads(scenario_path.read_text(encoding="utf-8"))
return (
meta_data.get("run_name", trajectory_path.parent.name),
scenario_data.get("id", ""),
_extract_trial_index(trajectory_path),
judge_model,
_JUDGE_PROMPT_VERSION,
)
def _existing_score_keys(out_path: Path) -> set[tuple[str, str, int, str, str]]:
"""Load existing judge-row identities, tolerating legacy rows."""
if not out_path.exists():
return set()
keys: set[tuple[str, str, int, str, str]] = set()
for line in out_path.read_text(encoding="utf-8").splitlines():
if not line.strip():
continue
try:
row = json.loads(line)
except json.JSONDecodeError:
continue
if not isinstance(row, dict):
continue
try:
keys.add(
(
str(row.get("run_name", "")),
str(row.get("scenario_id", "")),
int(row.get("trial_index", 0)),
str(row.get("judge_model", "")),
str(row.get("judge_prompt_version") or _JUDGE_PROMPT_VERSION),
)
)
except (TypeError, ValueError):
continue
return keys
# ---------------------------------------------------------------------------
# CLI
# ---------------------------------------------------------------------------
def _build_parser() -> argparse.ArgumentParser:
p = argparse.ArgumentParser(
prog="judge_trajectory",
description="Score plan-execute trajectories across the 6 AssetOpsBench rubric dimensions.",
formatter_class=argparse.RawDescriptionHelpFormatter,
epilog=textwrap.dedent("""\
Examples:
# Score a single trajectory
python scripts/judge_trajectory.py \\
--trajectory benchmarks/cell_Y_plan_execute/raw/issue3-aob-harness-smoke/issue3_aob_fmsr_run01.json \\
--scenario data/scenarios/aob_fmsr_01_list_failure_modes.json \\
--run-meta benchmarks/cell_Y_plan_execute/raw/issue3-aob-harness-smoke/meta.json
# Score all trajectories in a run directory
python scripts/judge_trajectory.py \\
--run-dir benchmarks/cell_Y_plan_execute/raw/issue3-aob-harness-smoke \\
--scenario-dir data/scenarios
# Score with full audit log saved
python scripts/judge_trajectory.py \\
--trajectory benchmarks/... \\
--scenario data/scenarios/... \\
--log-dir results/judge_logs
"""),
)
p.add_argument(
"--trajectory", type=Path, help="Path to a single trajectory JSON file."
)
p.add_argument(
"--scenario",
type=Path,
help="Path to the scenario JSON file (for --trajectory mode).",
)
p.add_argument(
"--run-meta",
type=Path,
help="Path to meta.json for the run (optional, enriches output).",
)
p.add_argument(
"--run-dir",
type=Path,
help="Run directory; scores all *.json files that look like trajectories.",
)
p.add_argument(
"--scenario-dir",
type=Path,
default=Path("data/scenarios"),
help="Directory to search for scenario files when using --run-dir.",
)
p.add_argument(
"--out",
type=Path,
default=Path("results/metrics/scenario_scores.jsonl"),
help="Output JSONL file (appended). Default: results/metrics/scenario_scores.jsonl",
)
p.add_argument(
"--judge-model",
default=_DEFAULT_JUDGE_MODEL,
help=f"LiteLLM model string for the judge. Default: {_DEFAULT_JUDGE_MODEL}",
)
p.add_argument(
"--log-dir",
type=Path,
default=None,
help=(
"If set, save a full judge audit log (prompt + raw response + dims) to "
"LOG_DIR/<run_name>/<scenario_id>_runNN_judge_log.json"
),
)
p.add_argument(
"--force",
action="store_true",
help="Re-score rows even when the idempotency key already exists.",
)
return p
def _find_scenario(scenario_dir: Path, trajectory_path: Path) -> Path | None:
"""Try to find the matching scenario file for a trajectory.
Checks (in order):
1. ``scenario_file`` field embedded in the trajectory JSON, resolved against
multiple candidate bases (trajectory dir, scenario_dir parent, scenario_dir).
2. Filename stem overlap between trajectory and scenario files.
Returns None if no match is found.
"""
try:
data = json.loads(trajectory_path.read_text(encoding="utf-8"))
except Exception:
return None
# If trajectory has a scenario_file field (e.g., from run_experiment.sh latencies),
# resolve relative paths against several stable bases so the lookup works regardless
# of the caller's working directory.
sf = data.get("scenario_file")
if sf:
raw = Path(sf)
bases = (
[raw]
if raw.is_absolute()
else [
trajectory_path.parent / raw,
scenario_dir.parent / raw,
scenario_dir / raw,
_REPO_ROOT / raw,
]
)
for candidate in bases:
if candidate.resolve().exists():
return candidate.resolve()
# Try matching by stem: trajectory stem may contain scenario slug
for candidate in scenario_dir.glob("*.json"):
if (
candidate.stem in trajectory_path.stem
or trajectory_path.stem in candidate.stem
):
return candidate
return None
def _is_trajectory_file(path: Path) -> bool:
"""Return True if the JSON file looks like a runner trajectory output.
Accepts any runner's per-trial JSON: plan-execute / Verified PE / AOB CLI
write ``trajectory``; AaT runner writes ``history``. Both shapes carry an
``answer`` field. Matches AOB ``feat/evaluation-module``'s permissive
``PersistedTrajectory.trajectory: Any``.
"""
if path.name in ("meta.json", "config.json", "summary.json"):
return False
try:
data = json.loads(path.read_text(encoding="utf-8"))
return "answer" in data and ("trajectory" in data or "history" in data)
except Exception:
return False
def _load_env() -> None:
"""Load .env when available; works with or without python-dotenv installed."""
try:
from dotenv import load_dotenv # type: ignore
load_dotenv()
return
except ImportError:
pass
env_path = Path(".env")
if not env_path.exists():
return
for raw_line in env_path.read_text(encoding="utf-8").splitlines():
line = raw_line.strip()
if not line or line.startswith("#") or "=" not in line:
continue
key, val = line.split("=", 1)
key, val = key.strip(), val.strip().strip("'\"")
if key:
os.environ.setdefault(key, val)
def main() -> None:
_load_env()
args = _build_parser().parse_args()
if args.trajectory:
# Single-file mode
if not args.scenario:
sys.exit("--scenario is required when using --trajectory")
identity = _score_identity(
args.trajectory,
args.scenario,
args.run_meta,
args.judge_model,
)
if not args.force and identity in _existing_score_keys(args.out):
print(
json.dumps(
{
"skipped": True,
"reason": "existing_score",
"identity": identity,
},
indent=2,
)
)
return
record = score_trajectory(
trajectory_path=args.trajectory,
scenario_path=args.scenario,
meta_path=args.run_meta,
judge_model=args.judge_model,
out_path=args.out,
log_dir=args.log_dir,
)
print(json.dumps(record, indent=2))
return
if args.run_dir:
# Run-directory mode: find all trajectory JSON files
meta_path = args.run_dir / "meta.json"
if not meta_path.exists():
meta_path = None
scored = 0
skipped = 0
existing_keys = _existing_score_keys(args.out)
for traj_file in sorted(args.run_dir.glob("*.json")):
if not _is_trajectory_file(traj_file):
continue
scenario_path = _find_scenario(args.scenario_dir, traj_file)
if scenario_path is None:
print(
f" [warn] could not find scenario for {traj_file.name}, skipping",
file=sys.stderr,
)
continue
identity = _score_identity(
traj_file,
scenario_path,
meta_path,
args.judge_model,
)
if not args.force and identity in existing_keys:
print(f"Skipping {traj_file.name}: existing score row")
skipped += 1
continue
print(
f"Scoring {traj_file.name} against {scenario_path.name}...",
file=sys.stderr,
)
record = score_trajectory(
trajectory_path=traj_file,
scenario_path=scenario_path,
meta_path=meta_path,
judge_model=args.judge_model,
out_path=args.out,
log_dir=args.log_dir,
)
print(f" score_6d={record['score_6d']} pass={record['pass']}")
existing_keys.add(identity)
scored += 1
print(
f"\nScored {scored} trajectory file(s), skipped {skipped}. Output: {args.out}"
)
return
_build_parser().print_help()
sys.exit(1)
if __name__ == "__main__":
main()
|