Skip to content

Commit b642351

Browse files
committed
Update base2-max to use gemini and gpt-5
1 parent 828a99a commit b642351

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.agents/base2/base2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export function createBase2(
6262
'researcher-web',
6363
'researcher-docs',
6464
'commander',
65-
isMax && 'editor-best-of-n-opus',
65+
isMax && 'editor-best-of-n-max',
6666
isMax && 'thinker-best-of-n-opus',
6767
'code-reviewer-opus',
6868
'context-pruner',

.agents/editor/best-of-n/editor-best-of-n.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -243,14 +243,14 @@ function* handleStepsMax({
243243
// Model selection pattern for max mode, using opus and gpt-5
244244
const MAX_MODEL_PATTERN = [
245245
'editor-implementor-opus',
246-
'editor-implementor-opus',
246+
'editor-implementor-gemini',
247247
'editor-implementor-gpt-5',
248248
'editor-implementor-opus',
249-
'editor-implementor-gpt-5',
250249
'editor-implementor-opus',
251250
'editor-implementor-gpt-5',
251+
'editor-implementor-gemini',
252+
'editor-implementor-opus',
252253
'editor-implementor-opus',
253-
'editor-implementor-gpt-5',
254254
'editor-implementor-opus',
255255
] as const
256256

evals/buffbench/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { runBuffBench } from './run-buffbench'
55
async function main() {
66
await runBuffBench({
77
evalDataPath: path.join(__dirname, 'eval-codebuff.json'),
8-
agents: ['base2-max', 'base2-opus', 'base2-opus-chill-on-reading-files'],
8+
agents: ['base2', 'base2-max'],
99
taskConcurrency: 3,
1010
})
1111

0 commit comments

Comments
 (0)