Skip to content

Commit 96270f3

Browse files
jahoomaclaude
andcommitted
Fix type errors in docsKept/docsRejected arrays
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b8d91c5 commit 96270f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

evalbuff/src/run-evalbuff.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,8 @@ async function improveDocs(opts: {
260260
} = opts
261261

262262
let totalCost = 0
263-
const docsKept: Array<{ path: string; reasoning: string }> = []
264-
const docsRejected: Array<{ path: string; reasoning: string }> = []
263+
const docsKept: Array<{ path: string; reasoning: string; scoreBefore: number; scoreAfter: number }> = []
264+
const docsRejected: Array<{ path: string; reasoning: string; scoreBefore: number; scoreAfter: number }> = []
265265

266266
// Step 1: Baseline run
267267
console.log(`\n Running ${parallelism} agents in parallel (baseline)...`)

0 commit comments

Comments
 (0)