Spaces:
Running
Running
File size: 23,525 Bytes
6d71d3b 9000fe3 6d71d3b 8a0b07d 6d71d3b 8a0b07d 6d71d3b 8a0b07d 6d71d3b 8a0b07d 6d71d3b | 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 | #!/usr/bin/env python3
"""Phase 4 paper-collection driver: spawn one subprocess per
(model, pack, level, seed, fog_mode) cell so a full Together-roster
eval produces complete, untruncated, audit-ready JSONL + PNG data.
Each cell runs as an isolated `python -m openra_bench.run_eval`
invocation pinned to a SINGLE pack / level / seed / fog-mode, with the
audit recorder (`--full-playback <dir>`) writing one JSONL per cell:
<output-dir>/<timestamp>__<model_safe>/<pack>__<level>__seed<N>__<fog>.jsonl
<output-dir>/<timestamp>__<model_safe>/<pack>__<level>__seed<N>__<fog>/turn_<N>.png
Behaviours:
* `--resume`: skips a cell whose JSONL already has a `terminal:` line
(`openra_bench.full_playback.is_complete_cell`). A partial / crashed
cell is correctly retried.
* `--parallel-cells N`: up to N cell subprocesses run concurrently.
One crashing cell does not abort the run.
* `--dry-run`: prints the cell list + estimated token / USD cost
without spawning anything.
* `--cost-estimate`: same as dry-run for the cost lines only.
* Per-cell logs land in `<output-dir>/.logs/<cell-id>.log` so
post-hoc you can diagnose any cell that exited non-zero.
Defaults are tuned for the Together AI roster the playback dirs use
(`Qwen/Qwen3.5-9B`, `Qwen/Qwen3.6-Plus`, `qwen/qwen3.6-flash`,
`google/gemma-4-31B-it`, `moonshotai/Kimi-K2.6`); override via flags.
NOT a runner of the Together API directly: this script orchestrates
the existing `openra_bench.run_eval` CLI, which already speaks the
Together-compatible (OpenAI Chat Completions) wire format.
"""
from __future__ import annotations
import argparse
import json
import os
import re
import shlex
import shutil
import subprocess
import sys
import time
from concurrent.futures import ThreadPoolExecutor, as_completed
from pathlib import Path
# Allow running from a checkout without `pip install -e .`.
HERE = Path(__file__).resolve().parent
REPO = HERE.parent
if str(REPO) not in sys.path:
sys.path.insert(0, str(REPO))
from openra_bench.full_playback import cell_stem, is_complete_cell # noqa: E402
from openra_bench.scenarios.loader import PACKS_DIR # noqa: E402
# โโ Together AI pricing (USD per 1M tokens) โโโโโโโโโโโโโโโโโโโโโโโโโโโ
# Snapshot as of Phase 4 prep (May 2026). Used by --cost-estimate. The
# values are conservative upper bounds โ if Together's published price
# is lower today the estimate will overshoot, which is the right side
# to err on for budget approval. Update inline as prices change.
#
# Source: https://together.ai/pricing (look up each model)
_TOGETHER_PRICES: dict[str, tuple[float, float]] = {
# model_id_lower -> (in_per_M, out_per_M)
"qwen/qwen3.5-9b": (0.20, 0.20),
"qwen/qwen3.6-plus": (0.50, 1.50),
"qwen/qwen3.6-flash": (0.18, 0.18),
"google/gemma-4-31b-it": (0.25, 0.25),
"moonshotai/kimi-k2.6": (0.60, 2.50),
}
_DEFAULT_PRICE = (0.50, 1.50) # safe fallback if a model isn't listed
# โโ Token-per-turn priors (from playback/pilot_* historical runs) โโโโโ
# Used by --cost-estimate. These are AVERAGES over the existing pilot
# runs (perception + handoff pilots, May 2026). Real numbers will vary
# per cell; the estimate is order-of-magnitude.
_AVG_TURNS_PER_CELL = 18 # mean across pilots; max_turns is 36 typically
_AVG_PROMPT_TOK_PER_TURN = 4500 # ~prompt+image+codex, sliding window
_AVG_COMPLETION_TOK_PER_TURN = 250 # tool call + brief reasoning
# Default Together roster (from the existing playback dirs).
_DEFAULT_MODELS = [
"Qwen/Qwen3.5-9B",
"Qwen/Qwen3.6-Plus",
"qwen/qwen3.6-flash",
"google/gemma-4-31B-it",
"moonshotai/Kimi-K2.6",
]
def _safe_model(m: str) -> str:
return re.sub(r"[^A-Za-z0-9._-]+", "_", m)
def _list_all_packs() -> list[str]:
"""Every active (non-quarantine, non-template) pack id under
`openra_bench/scenarios/packs/`. Sorted for stable ordering."""
out: list[str] = []
for p in sorted(PACKS_DIR.glob("*.yaml")):
if p.name.startswith(("_", "TEMPLATE")):
continue
# Pack id == filename stem (matches load_pack convention).
out.append(p.stem)
return out
def _resolve_packs(spec: str | None) -> list[str]:
"""Resolve `--packs`:
* `all` โ every active pack
* `@FILE` โ one pack id per line
* `a,b,c` โ comma-separated list
* `path/to/dir` โ every *.yaml in that dir (stem == id)
* None/empty โ `all`
"""
if not spec or spec.lower() == "all":
return _list_all_packs()
if spec.startswith("@"):
ids = []
for line in Path(spec[1:]).read_text().splitlines():
line = line.strip()
if line and not line.startswith("#"):
ids.append(line)
return ids
# Comma list short-circuits the dir check (avoids `File name too long`
# when a long comma list is passed).
if "," in spec:
return [s.strip() for s in spec.split(",") if s.strip()]
# Possibly a single pack id OR a directory path. Heuristic: if it
# contains a `/` OR exists on disk, treat as path.
if "/" in spec or len(spec) > 200 or Path(spec).exists():
p = Path(spec)
if p.is_dir():
return sorted(x.stem for x in p.glob("*.yaml"))
return [spec.strip()]
def _price_for(model: str) -> tuple[float, float]:
return _TOGETHER_PRICES.get(model.lower().strip(), _DEFAULT_PRICE)
def _estimate_cost(cells_per_model: dict[str, int]) -> dict:
"""Per-model token + USD estimate from `cells_per_model`. Uses the
pilot-historical priors at module top; conservative on the high
side. Returns a printable structured dict."""
rows = []
total_usd = 0.0
total_tok_in = 0
total_tok_out = 0
for model, n_cells in sorted(cells_per_model.items()):
in_per_m, out_per_m = _price_for(model)
tok_in = n_cells * _AVG_TURNS_PER_CELL * _AVG_PROMPT_TOK_PER_TURN
tok_out = n_cells * _AVG_TURNS_PER_CELL * _AVG_COMPLETION_TOK_PER_TURN
usd = (tok_in / 1_000_000) * in_per_m + (tok_out / 1_000_000) * out_per_m
rows.append(
{
"model": model,
"cells": n_cells,
"est_tokens_in": tok_in,
"est_tokens_out": tok_out,
"in_per_M": in_per_m,
"out_per_M": out_per_m,
"est_usd": round(usd, 2),
}
)
total_usd += usd
total_tok_in += tok_in
total_tok_out += tok_out
return {
"per_model": rows,
"total_cells": sum(cells_per_model.values()),
"total_tokens_in": total_tok_in,
"total_tokens_out": total_tok_out,
"total_usd": round(total_usd, 2),
"assumptions": {
"avg_turns_per_cell": _AVG_TURNS_PER_CELL,
"avg_prompt_tokens_per_turn": _AVG_PROMPT_TOK_PER_TURN,
"avg_completion_tokens_per_turn": _AVG_COMPLETION_TOK_PER_TURN,
"source": "pilot pilot_perception + pilot_handoff means, May 2026",
},
}
# โโ Plan + run โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
def build_plan(args) -> list[dict]:
"""Expand the args into the flat list of (model, pack, level, seed,
fog_mode, repeat) cells. Each item carries the JSONL path it will
write to so `--resume` can scan and skip."""
models = [m.strip() for m in args.models.split(",") if m.strip()]
packs = _resolve_packs(args.packs)
levels = [s.strip() for s in args.levels.split(",") if s.strip()]
seeds = [int(s) for s in args.seeds.split(",") if s.strip()]
fogs = [s.strip() for s in args.fog_modes.split(",") if s.strip()]
rng_reps = range(max(1, int(args.repeats)))
out: list[dict] = []
out_root = Path(args.output_dir)
for model in models:
model_dir = out_root / f"{args.timestamp}__{_safe_model(model)}"
for pack in packs:
for level in levels:
for seed in seeds:
for fog in fogs:
for rep in rng_reps:
stem = cell_stem(pack, level, seed, fog)
if rep > 0:
stem = f"{stem}__rep{rep}"
jsonl = model_dir / f"{stem}.jsonl"
out.append(
{
"model": model,
"pack": pack,
"level": level,
"seed": seed,
"fog_mode": fog,
"repeat": rep,
"model_dir": str(model_dir),
"jsonl_path": str(jsonl),
"cell_id": (
f"{_safe_model(model)}__{stem}"
),
}
)
return out
def filter_resume(plan: list[dict]) -> tuple[list[dict], list[dict]]:
"""Split `plan` into (todo, done) on resume โ `done` is anything
whose JSONL exists AND ends with a `terminal:` line."""
todo: list[dict] = []
done: list[dict] = []
for c in plan:
if is_complete_cell(c["jsonl_path"]):
done.append(c)
else:
todo.append(c)
return todo, done
def _pack_path_for(pack_id: str) -> Path:
return PACKS_DIR / f"{pack_id}.yaml"
# โโ transient-error detection for cell-level retry โโโโโโโโโโโโโโโโโโ
# A cell whose subprocess errored at the provider layer (429, 503,
# transport reset, read timeout) leaves an `episodes[*].notes` entry
# in the stats.json with the underlying exception text. We retry only
# on patterns known to be transient โ 404 / 400 / auth errors are
# never retried (would just burn quota).
_TRANSIENT_NOTE_MARKERS = (
"429",
"500 from provider",
"502 from provider",
"503 from provider",
"504 from provider",
"Too many requests",
"rate limit",
"RuntimeError: 5",
"TimeoutException",
"ReadTimeout",
"ConnectError",
"TransportError",
"RemoteProtocolError",
)
def _stats_path_for(cell: dict, args) -> Path:
return Path(args.output_dir) / ".logs" / f"{cell['cell_id']}.stats.json"
def _is_transient_failure(stats_path: Path) -> bool:
"""True if the most recent attempt's stats.json shows a retryable
error in the episode notes. False on missing file, parse error,
no episodes, or a non-transient note (e.g. 404 model_not_available).
"""
try:
d = json.loads(stats_path.read_text())
except (OSError, json.JSONDecodeError):
return False
eps = d.get("episodes") or []
if not eps:
return False
notes = " ".join(str(n) for n in (eps[-1].get("notes") or []))
if not notes:
return False
return any(m in notes for m in _TRANSIENT_NOTE_MARKERS)
def _run_cell_with_retry(cell: dict, args, python_bin: str) -> dict:
"""Wrap _run_cell with bounded backoff on transient failures.
The cell counts as 'failed and retryable' when:
(a) `is_complete_cell(jsonl_path)` returns False, AND
(b) the cell's stats.json carries a transient-error note.
Any other outcome (success, or a permanent error like 404) is
returned immediately.
"""
max_attempts = max(1, int(args.cell_retries))
base = float(args.cell_retry_base_delay)
cap = 300.0 # 5 min hard cap; long enough for Together rate windows
last = None
for attempt in range(1, max_attempts + 1):
r = _run_cell(cell, args, python_bin)
r["attempts"] = attempt
last = r
if r["complete"] or attempt >= max_attempts:
return r
stats_path = _stats_path_for(cell, args)
if not _is_transient_failure(stats_path):
return r # permanent error โ don't burn quota
delay = min(cap, base * (2 ** (attempt - 1)))
print(
f" โป retry {attempt + 1}/{max_attempts} for {cell['cell_id']} "
f"after {delay:.0f}s (transient failure)",
flush=True,
)
time.sleep(delay)
return last # unreachable, but keeps type-checkers quiet
def _run_cell(cell: dict, args, python_bin: str) -> dict:
"""Spawn one `python -m openra_bench.run_eval` for a single cell.
Returns a result dict with rc / log_path / jsonl_path."""
model_dir = Path(cell["model_dir"])
model_dir.mkdir(parents=True, exist_ok=True)
log_dir = Path(args.output_dir) / ".logs"
log_dir.mkdir(parents=True, exist_ok=True)
log_path = log_dir / f"{cell['cell_id']}.log"
# The audit dir is the per-model timestamp dir; the inner JSONL stem
# is derived deterministically by FullPlayback from pack/level/seed/
# fog. We pre-create the parent so concurrent cells don't race on it.
cmd = [
python_bin,
"-m",
"openra_bench.run_eval",
"--provider",
args.provider,
"--model",
cell["model"],
"--packs",
str(_pack_path_for(cell["pack"])),
"--levels",
cell["level"],
"--seeds",
str(cell["seed"]),
"--fog-mode",
cell["fog_mode"],
"--full-playback",
str(model_dir),
# Always emit a per-cell stats file under .logs so the report has
# something even when --no-stats is fine to ignore.
"--out",
str(log_dir / f"{cell['cell_id']}.stats.json"),
# Empty seeds list arg quirk; we pin exactly one seed.
]
# Resume / repeat: a per-cell `--repeats N` would multiply within
# the subprocess; we keep that to 1 (default) since the OUTER loop
# owns the repeat index โ each repeat is a distinct subprocess so
# the JSONL stems differ (rep0 / repN). Future: thread the repeat
# index into the FullPlayback stem (the planner already encodes it
# in `cell_id`; the inner JSONL would still be `โฆ__seedN__fog.jsonl`
# which a rep>0 cell would collide on โ so we run rep0 only via
# this script for now and document repeats as a separate sweep).
env = dict(os.environ)
# The CostMeter inside run_eval uses ProviderConfig.price_in/out_per_m
# which we don't pass here; cost capture is best-effort and the
# FullPlayback `terminal.total_tokens_*` is the authoritative token
# count for downstream costing.
started = time.time()
with open(log_path, "w") as fh:
fh.write(f"# cmd: {shlex.join(cmd)}\n")
fh.write(f"# started: {time.strftime('%Y-%m-%d %H:%M:%S')}\n\n")
fh.flush()
try:
rc = subprocess.call(
cmd, stdout=fh, stderr=subprocess.STDOUT, env=env
)
except Exception as e: # noqa: BLE001
fh.write(f"\n# spawn failed: {type(e).__name__}: {e}\n")
rc = -1
return {
"cell_id": cell["cell_id"],
"rc": rc,
"elapsed_s": round(time.time() - started, 2),
"log_path": str(log_path),
"jsonl_path": cell["jsonl_path"],
"complete": is_complete_cell(cell["jsonl_path"]),
}
def main(argv: list[str]) -> int:
ap = argparse.ArgumentParser(
prog="collect_eval_data.py",
description=__doc__,
formatter_class=argparse.RawDescriptionHelpFormatter,
)
ap.add_argument(
"--models",
default=",".join(_DEFAULT_MODELS),
help="comma-separated Together model ids "
f"(default: {','.join(_DEFAULT_MODELS)})",
)
ap.add_argument(
"--packs",
default="all",
help="`all` | comma-separated pack ids | @file_with_one_per_line",
)
ap.add_argument("--levels", default="easy,medium,hard")
ap.add_argument("--seeds", default="1,2,3,4")
ap.add_argument(
"--fog-modes",
default="vision",
help="comma-separated subset of "
"structured,structured-clear,vision,vision-clear,image,image-clear",
)
ap.add_argument(
"--repeats",
type=int,
default=1,
help="run each cell N times (rep0 + repN suffix). >1 currently "
"shares the JSONL stem โ keep at 1 for paper-grade collection.",
)
ap.add_argument(
"--run-label",
default="paper-collection",
help="logical name for this run (becomes a path segment under "
"--output-dir's parent if you want; informational here)",
)
ap.add_argument(
"--output-dir",
default=None,
help="root for the audit dirs "
"(default: data/runs/<run-label>)",
)
ap.add_argument(
"--parallel-cells",
type=int,
default=1,
help="how many cell subprocesses to run at once",
)
ap.add_argument(
"--cell-retries",
type=int,
default=3,
help="max attempts per cell on transient failure (429/5xx/"
"timeout/transport). 1 = no retry. Default: 3",
)
ap.add_argument(
"--cell-retry-base-delay",
type=float,
default=30.0,
help="base seconds before first retry; doubles each attempt, "
"capped at 300s. Default: 30",
)
ap.add_argument(
"--provider",
default="together",
help="provider name forwarded to run_eval (default: together)",
)
ap.add_argument(
"--resume",
action="store_true",
help="skip cells whose JSONL already ends with a terminal line",
)
ap.add_argument(
"--dry-run",
action="store_true",
help="print the planned cell list + cost estimate; spawn nothing",
)
ap.add_argument(
"--cost-estimate",
action="store_true",
help="print the cost estimate and exit (no plan listing)",
)
ap.add_argument(
"--python",
default=sys.executable,
help=f"python binary used to launch run_eval (default: {sys.executable})",
)
ap.add_argument(
"--timestamp",
default=None,
help="override the timestamp segment of the per-model dir "
"(default: now UTC, format YYYYMMDD-HHMMSS)",
)
a = ap.parse_args(argv[1:])
a.timestamp = a.timestamp or time.strftime("%Y%m%d-%H%M%S", time.gmtime())
if not a.output_dir:
a.output_dir = str(REPO / "data" / "runs" / a.run_label)
plan = build_plan(a)
if not plan:
print("collect_eval_data: empty plan โ nothing to do", file=sys.stderr)
return 2
# Cell counts per model for the cost estimator.
cells_per_model: dict[str, int] = {}
for c in plan:
cells_per_model[c["model"]] = cells_per_model.get(c["model"], 0) + 1
cost = _estimate_cost(cells_per_model)
if a.cost_estimate or a.dry_run:
print("== cost estimate ==")
for row in cost["per_model"]:
print(
f" {row['model']:<32} cells={row['cells']:>5} "
f"tok_in={row['est_tokens_in']:>10,} "
f"tok_out={row['est_tokens_out']:>9,} "
f"@ ${row['in_per_M']}/${row['out_per_M']} per M "
f"โ ${row['est_usd']:>8.2f}"
)
print(
f" TOTAL: cells={cost['total_cells']} "
f"tok_in={cost['total_tokens_in']:,} "
f"tok_out={cost['total_tokens_out']:,} "
f"โ ${cost['total_usd']:.2f}"
)
print(f" assumptions: {cost['assumptions']}")
if a.cost_estimate and not a.dry_run:
return 0
todo = plan
done: list[dict] = []
if a.resume:
todo, done = filter_resume(plan)
print(
f"resume: {len(done)}/{len(plan)} cells already complete; "
f"{len(todo)} to run",
file=sys.stderr,
)
if a.dry_run:
print(f"\n== plan ({len(todo)} cells, {a.parallel_cells} parallel) ==")
# Truncate listing to a sane head; full plan goes to a sidecar.
for c in todo[:50]:
print(
f" {c['model']:<30} {c['pack']:<40} {c['level']:<6} "
f"seed={c['seed']} fog={c['fog_mode']:<18} -> "
f"{c['jsonl_path']}"
)
if len(todo) > 50:
print(f" ... ({len(todo) - 50} more)")
# Sidecar plan dump for the reviewer.
sidecar = Path(a.output_dir) / "_dry_run_plan.json"
sidecar.parent.mkdir(parents=True, exist_ok=True)
sidecar.write_text(
json.dumps(
{"plan": todo, "cost": cost, "args": vars(a)},
indent=2,
default=str,
)
)
print(f"\nwrote full plan: {sidecar}")
return 0
# โโ Live run โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
out_root = Path(a.output_dir)
out_root.mkdir(parents=True, exist_ok=True)
(out_root / ".logs").mkdir(parents=True, exist_ok=True)
# Manifest the invocation so post-hoc you can reproduce.
(out_root / "_invocation.json").write_text(
json.dumps(
{
"args": vars(a),
"cost_estimate": cost,
"planned": len(plan),
"todo": len(todo),
"resumed": len(done),
"started": time.strftime("%Y-%m-%d %H:%M:%SZ", time.gmtime()),
},
indent=2,
default=str,
)
)
results: list[dict] = []
fail = 0
completed = 0
started = time.time()
if a.parallel_cells <= 1:
for c in todo:
r = _run_cell_with_retry(c, a, a.python)
results.append(r)
completed += 1 if r["complete"] else 0
fail += 0 if r["rc"] == 0 else 1
print(
f"[{len(results)}/{len(todo)}] {c['cell_id']} "
f"rc={r['rc']} t={r['elapsed_s']}s "
f"complete={r['complete']}",
flush=True,
)
else:
with ThreadPoolExecutor(max_workers=a.parallel_cells) as ex:
futs = {ex.submit(_run_cell_with_retry, c, a, a.python): c for c in todo}
for fu in as_completed(futs):
r = fu.result()
results.append(r)
completed += 1 if r["complete"] else 0
fail += 0 if r["rc"] == 0 else 1
print(
f"[{len(results)}/{len(todo)}] {r['cell_id']} "
f"rc={r['rc']} t={r['elapsed_s']}s "
f"complete={r['complete']}",
flush=True,
)
elapsed = round(time.time() - started, 1)
summary = {
"ran": len(results),
"complete": completed,
"failed": fail,
"resumed": len(done),
"total_planned": len(plan),
"elapsed_seconds": elapsed,
"results": results,
}
(out_root / "_summary.json").write_text(
json.dumps(summary, indent=2, default=str)
)
print(
f"\ndone in {elapsed}s: {completed}/{len(todo)} complete, "
f"{fail} failed; see {out_root}/_summary.json"
)
return 0 if fail == 0 else 1
if __name__ == "__main__":
sys.exit(main(sys.argv))
|