This commit is contained in:
Theo Browne
2026-02-20 04:26:14 -08:00
parent 5e3b4b0279
commit 593ad125ff
6 changed files with 37 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ import { appendFileSync } from "node:fs";
import { join } from "node:path";
import {
MODELS,
Model,
type Model,
shuffle,
withRetry,
callGeneratePrompt,
@@ -141,7 +141,7 @@ async function worker() {
} else {
completedRounds++;
if (result.winner) {
scores[result.winner.name]++;
scores[result.winner.name] = (scores[result.winner.name] ?? 0) + 1;
}
let roundLog = `\n=== ROUND ${roundNum} ===\n`;