status: canonical-index
scope: team-repo
owner: Team 13
canonical: true
configs/
Experiment configs consumed by scripts/run_experiment.sh. Each file describes one benchmark cell (or one smoke run that maps to a benchmark cell) and is sourced as bash, so the schema is just env vars.
The currently verified benchmark-facing execution paths are:
ORCHESTRATION=plan_executeORCHESTRATION=plan_executewithENABLE_SELF_ASK=1ORCHESTRATION=verified_peORCHESTRATION=verified_pewithENABLE_SELF_ASK=1ENABLE_SMARTGRID_SERVERS=1- Smart Grid MCP servers passed into AssetOpsBench
plan-executeor the repo-local PE-family wrappers via the same server-path contract
Agent-as-Tool now uses the repo-local default runner at scripts/aat_runner.py
(no template required). Repo-local Verified PE runner code exists; this branch
promotes the canonical Experiment 2 Cell Z config out of the legacy placeholder
and adds the Y/Z + Self-Ask variants. See
../docs/orchestration_wiring.md.
Naming
Use the cell name from ../docs/execution_plan.md. The execution-facing config convention is:
configs/aat_{direct,mcp_baseline,mcp_optimized}.envfor the canonical Experiment 1 Cell A / B / C runsconfigs/aat_mcp_model_optimized.envfor exploratory Cell D, which stacks optimized AaT MCP transport with model-side INT8/BF16/fp8-KV servingconfigs/experiment2/for the extra Experiment 2 templates that do not already exist onmain(currently the Plan-Execute / Cell Y lane and the optional Cell Z follow-on plus the PE-family Self-Ask and optimized-serving ablations)
The active cell mapping is:
| Cell | Orchestration | MCP mode | Suggested config name |
|---|---|---|---|
| A | Agent-as-Tool | direct | aat_direct.env |
| B | Agent-as-Tool | baseline | aat_mcp_baseline.env |
| C | Agent-as-Tool | optimized | aat_mcp_optimized.env |
| D | Agent-as-Tool | optimized + model-side | aat_mcp_model_optimized.env |
| Y | Plan-Execute | baseline | experiment2/exp2_cell_Y_pe_mcp_baseline.env |
| Y + Self-Ask | Plan-Execute | baseline | experiment2/exp2_cell_Y_pe_self_ask_mcp_baseline.env |
| Z | Verified PE follow-on | baseline | experiment2/exp2_cell_Z_verified_pe_mcp_baseline.env |
| Z + Self-Ask | Verified PE follow-on | baseline | experiment2/exp2_cell_Z_verified_pe_self_ask_mcp_baseline.env |
| Z + Self-Ask + D | Verified PE + Self-Ask | optimized + model-side | experiment2/exp2_cell_ZSD_verified_pe_self_ask_mcp_model_optimized.env |
Opportunistic config universe
configs/config_universe/ is the broad generated inventory for deadline-period
compute waves. It covers all currently runnable method rows, all 31 canonical
scenarios, domain-slice reruns, reviewed generated-scenario stress rows,
mitigation ladders, context/repair/decoding ablations, and hosted WatsonX 70B
variants. Use the cohort TSV files in
configs/config_universe/cohorts/ as runner manifests, and use
configs/config_universe/catalog.tsv to sort by expected trajectory count.
Per-row env files are generated locally on each VM by running
python3 scripts/generate_config_universe.py; configs/config_universe/generated/
is intentionally ignored rather than tracked.
The generator is deliberately wider than the paper tables. Completed runs still need raw-dir pullback, count validation, judge rows, and evidence-registry promotion before they become claim-grade evidence.
Required keys
EXPERIMENT_NAME— short label; becomes part of the run IDEXPERIMENT_CELL— one ofA,B,C,D,Y,Z,ZSDEXPERIMENT_FAMILY— e.g.exp1_mcp_overhead,exp2_orchestration,smokeSCENARIOS_GLOB— scenario files relative to repo rootSCENARIO_SET_NAME— stable label for the scenario packMODEL_ID— model string passed to AssetOpsBenchplan-execute
Important optional keys
ORCHESTRATION—plan_execute,agent_as_tool, orverified_peMCP_MODE—direct,baseline, oroptimizedENABLE_SMARTGRID_SERVERS— when1, pass this repo's four Smart Grid MCP servers intoplan-executeENABLE_WANDB— when1, write the canonical config + summary fields to a WandB run after the benchmark finishesENABLE_MISSING_EVIDENCE_GUARD— when1, apply themissing_evidence_final_answer_guardduring trial post-processing. This is the #65 mitigation toggle for matched #66 reruns: all non-mitigation config fields should stay aligned with the before-side run.ENABLE_MISSING_EVIDENCE_REPAIR— when1, enable the PE-familymissing_evidence_retry_replan_guardinside the runner. This requiresENABLE_MISSING_EVIDENCE_GUARD=1so the detection/accounting gate remains active after recovery attempts.MISSING_EVIDENCE_REPAIR_MAX_ATTEMPTS— maximum detector-driven repair attempts per trial; defaults to2.MISSING_EVIDENCE_REPAIR_MAX_ATTEMPTS_PER_TARGET— maximum detector-driven retries per unresolved evidence target; defaults to1.ENABLE_EXPLICIT_FAULT_RISK_ADJUDICATION— when1, enable the PE-familyexplicit_fault_risk_adjudication_step. This requiresENABLE_MISSING_EVIDENCE_GUARD=1so adjudicated runs keep the truthfulness/accounting gate active.LAUNCH_VLLM— when1, launch the local vLLM server first and point AssetOpsBench's LiteLLM client athttp://127.0.0.1:<port>/v1VLLM_DTYPE— vLLM--dtype; defaults tofloat16, but Cell D usesbfloat16for the compressed-tensors INT8 / fp8-KV stackAOB_PATH— path to the sibling AssetOpsBench checkout; defaults to../AssetOpsBenchrelative to the shared project root, so it also works from a git worktree
Orchestration-specific adapter hooks
AAT_RUNNER_TEMPLATE— optional override whenORCHESTRATION=agent_as_tool; otherwise the harness runsscripts/aat_runner.pyAAT_PARALLEL_TOOL_CALLS— optional AaT runner setting for the OpenAI Agents SDK; defaults tofalsefor local vLLM Llama 3 tool-call compatibilityHYBRID_RUNNER_TEMPLATE— required only for the legacyhybridplaceholder pathVERIFIED_PE_RUNNER_TEMPLATE— optional override whenORCHESTRATION=verified_pe; otherwise the repo-local Verified PE runner is used
These are intentionally explicit. AaT now has a default benchmark dispatch path; templates are reserved for parity smoke checks and one-off variants.
Mitigation ladder keys
These keys implement or reserve the recovery/adjudication follow-on spec in ../docs/mitigation_recovery_adjudication.md.
| Key | Status | Behavior |
|---|---|
| ENABLE_MISSING_EVIDENCE_REPAIR | runnable for PE-family local runners | enables missing_evidence_retry_replan_guard; requires ENABLE_MISSING_EVIDENCE_GUARD=1 |
| MISSING_EVIDENCE_REPAIR_MAX_ATTEMPTS | runnable | caps detector-driven repair attempts per trial |
| MISSING_EVIDENCE_REPAIR_MAX_ATTEMPTS_PER_TARGET | runnable | caps retries per unresolved evidence target |
| ENABLE_EXPLICIT_FAULT_RISK_ADJUDICATION | runnable for PE-family local runners | enables structured pre-finalization fault/risk adjudication; requires ENABLE_MISSING_EVIDENCE_GUARD=1 |
Running
Dry-run the wiring first:
DRY_RUN=1 bash scripts/run_experiment.sh configs/example_baseline.env
# or
DRY_RUN=1 bash scripts/run_experiment.sh configs/experiment2/exp2_cell_Y_pe_mcp_baseline.env
Submit the real job:
sbatch scripts/run_experiment.sh configs/aat_mcp_baseline.env
Output layout
Outputs follow the canonical benchmarks/ shape:
benchmarks/cell_<...>/config.json— reproducibility config, later patched withwandb_run_urlbenchmarks/cell_<...>/summary.json— aggregate summary for the most recent run of that cellbenchmarks/cell_<...>/raw/<run-id>/— run-scoped raw outputs and logs- one JSON file per scenario-trial
latencies.jsonlharness.logvllm.logwhen local vLLM launch is enabledmeta.json
Status
As of Apr 30, 2026:
- Plan-Execute wiring is implemented through AssetOpsBench's canonical
plan-executeCLI with explicit Smart Grid server overrides. - WandB config + summary emission is wired in the benchmark runner.
- Experiment 1 analysis still maps to Cells A / B / C, but the execution
configs for those lanes stay on the canonical
configs/aat_*.envnames thatmainalready documents. - AaT now uses
scripts/aat_runner.pyby default; templates only for variants. - Verified PE / PE + Self-Ask are already runnable on the canonical harness path. Cell Z raw run set still needs to be captured before Z is a notebook-ready follow-on lane.
- Repo-local PE-family runners can use
MCP_MODE=optimizedto reuse initialized MCP stdio sessions inside a scenario run. The first committed user is the exploratoryZSDconfig, which stacks Verified PE + Self-Ask with the Cell D INT8/BF16/fp8-KV serving profile. Slurm job9074775_exp2_cell_ZSD_verified_pe_self_ask_mcp_model_optimizedis the first successful ZSD proof run (6 / 6, W&B48nqpclw, judge mean0.611). configs/mitigation/contains matched-rerun templates for the first selected mitigation ladder: detection-only guard, detector-driven retry/replan repair, and explicit fault/risk adjudication. They should be run only as before/after follow-ons, not folded into the core Experiment 2 baseline.