Skip to content

Commit 5a80353

Browse files
committed
Revert editor-mulit-prompt2 in base max for now
1 parent 846e69d commit 5a80353

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

.agents/base2/base2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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',

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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',

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

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff 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',

0 commit comments

Comments
 (0)