File tree Expand file tree Collapse file tree 3 files changed +2
-7
lines changed
Expand file tree Collapse file tree 3 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ export function createBase2(
7575 isDefault && 'thinker' ,
7676 isLite && 'editor-gpt-5' ,
7777 isDefault && 'editor' ,
78- isMax && 'editor-multi-prompt2 ' ,
78+ isMax && 'editor-multi-prompt ' ,
7979 isMax && 'thinker-best-of-n-opus' ,
8080 ! isLite && 'code-reviewer' ,
8181 'context-pruner' ,
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ export const createBestOfNImplementor = (options: {
1919 ? 'anthropic/claude-opus-4.5'
2020 : isGemini
2121 ? 'google/gemini-3-pro-preview'
22- : 'openai/gpt-5.2 ' ,
22+ : 'openai/gpt-5.1 ' ,
2323 displayName : 'Implementation Generator' ,
2424 spawnerPrompt :
2525 'Generates a complete implementation plan with all code changes' ,
Original file line number Diff line number Diff line change @@ -102,11 +102,6 @@ function* handleStepsMultiPrompt({
102102 prompt : `Strategy: ${ prompt } ` ,
103103 } ) )
104104
105- // Always spawn an additional gpt-5 implementor with no prompt
106- implementorAgents . push ( {
107- agent_type : 'editor-implementor-gpt-5' ,
108- } )
109-
110105 // Spawn all implementor agents
111106 const { toolResult : implementorResults } = yield {
112107 toolName : 'spawn_agents' ,
You can’t perform that action at this time.
0 commit comments