Skip to content

Commit 828a99a

Browse files
committed
Use only opus in best of n editor for max mode. Give the selector a thinking budget!
1 parent 0643c80 commit 828a99a

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
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-max',
65+
isMax && 'editor-best-of-n-opus',
6666
isMax && 'thinker-best-of-n-opus',
6767
'code-reviewer-opus',
6868
'context-pruner',

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ export const createBestOfNSelector = (options: {
2626
effort: 'high',
2727
},
2828
}),
29+
...(isOpus && {
30+
reasoningOptions: {
31+
max_tokens: 4000,
32+
},
33+
}),
2934
displayName: isGpt5
3035
? 'Best-of-N GPT-5 Implementation Selector'
3136
: isGemini

0 commit comments

Comments
 (0)