Skip to content

Commit 3b1af06

Browse files
committed
Reasoning options high for best-of-n implementor/selector
1 parent 1c18bda commit 3b1af06

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.agents/base2/best-of-n/best-of-n-implementor.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ export const createBestOfNImplementor = (options: {
1212
return {
1313
publisher,
1414
model: isSonnet ? 'anthropic/claude-sonnet-4.5' : 'openai/gpt-5',
15+
...(isGpt5 && {
16+
reasoningOptions: {
17+
effort: 'high',
18+
},
19+
}),
1520
displayName: 'Implementation Generator',
1621
spawnerPrompt:
1722
'Generates a complete implementation plan with all code changes',

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,16 @@ export const createBestOfNSelector = (options: {
99
}): Omit<SecretAgentDefinition, 'id'> => {
1010
const { model } = options
1111
const isSonnet = model === 'sonnet'
12+
const isGpt5 = model === 'gpt-5'
1213

1314
return {
1415
publisher,
1516
model: isSonnet ? 'anthropic/claude-sonnet-4.5' : 'openai/gpt-5',
17+
...(isGpt5 && {
18+
reasoningOptions: {
19+
effort: 'high',
20+
},
21+
}),
1622
displayName: 'Best-of-N Implementation Selector',
1723
spawnerPrompt:
1824
'Analyzes multiple implementation proposals and selects the best one',

0 commit comments

Comments
 (0)