File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff 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' ,
Original file line number Diff line number Diff 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' ,
You can’t perform that action at this time.
0 commit comments