Skip to content

Commit 95a7500

Browse files
committed
Update claude to opus, codex to gpt-5.1-codex-max
1 parent 7f02fc8 commit 95a7500

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

evals/buffbench/runners/claude.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ export class ClaudeRunner implements Runner {
2727
'stream-json',
2828
'--verbose',
2929
'--dangerously-skip-permissions',
30+
'--model',
31+
'opus',
3032
]
3133

3234
console.log(`[ClaudeRunner] Running: claude ${args.join(' ')}`)

evals/buffbench/runners/codex.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export class CodexRunner implements Runner {
2020
// Use exec subcommand with --full-auto for automatic execution
2121
// --full-auto enables -a on-failure and --sandbox workspace-write
2222
// Use --json for structured output that we can parse
23-
const args = ['exec', '--full-auto', '--json', prompt]
23+
const args = ['exec', '--full-auto', '--json', '-m', 'gpt-5.1-codex-max', prompt]
2424

2525
console.log(`[CodexRunner] Running: codex ${args.join(' ')}`)
2626

0 commit comments

Comments
 (0)