docs: backfill env template and migration notes for M2

This commit is contained in:
2026-07-21 01:28:33 -04:00
parent 9aa97a61ae
commit 724dc3c328
10 changed files with 59 additions and 30 deletions
+3 -1
View File
@@ -145,7 +145,9 @@ def _scoreboard(args: argparse.Namespace, env: dict[str, str]) -> None:
results.append(json.loads(path.read_text(encoding="utf-8")))
rows = sb.load_rows(*(r["telemetry"] for r in results))
calls = sum(r["stats"]["calls"] for r in results)
max_attempts = int(env.get(f"{args.scope}__RETRY__MAX_ATTEMPTS", env.get("LLM_MAX_RETRIES", "3")))
max_attempts = int(
env.get(f"{args.scope}__RETRY__MAX_ATTEMPTS", env.get("LLM_MAX_RETRIES", "3"))
)
verdicts: list[tuple[str, str]] = []
def _check(name: str, fn, *fargs, **fkwargs) -> None: