You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .agents/base2/base2.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ export function createBase2(
65
65
isDefault&&'editor-best-of-n',
66
66
isMax&&'editor-best-of-n-max',
67
67
isDefault&&'thinker-best-of-n',
68
-
isMax&&'thinker-best-of-n-gpt-5',
68
+
isMax&&'thinker-best-of-n-opus',
69
69
isDefault&&'code-reviewer-gemini',
70
70
isMax&&'code-reviewer-opus',
71
71
'context-pruner',
@@ -118,7 +118,7 @@ Use the spawn_agents tool to spawn specialized agents to help you complete the u
118
118
${buildArray(
119
119
'- Spawn context-gathering agents (file pickers, code-searcher, directory-lister, glob-matcher, and web/docs researchers) before making edits.',
120
120
isMax&&
121
-
'- Spawn the thinker-best-of-n-gpt-5 after gathering context to solve complex problems.',
121
+
'- Spawn the thinker-best-of-n-opus after gathering context to solve complex problems.',
122
122
`- Spawn a ${isMax ? 'editor-best-of-n-max' : 'editor-best-of-n'} agent to implement the changes after you have gathered all the context you need. You must spawn this agent for non-trivial changes, since it writes much better code than you would with the str_replace or write_file tools. Don't spawn the editor in parallel with context-gathering agents.`,
123
123
'- Spawn commanders sequentially if the second command depends on the the first.',
124
124
!isFast&&
@@ -385,7 +385,7 @@ function buildImplementationStepPrompt({
385
385
`Keep working until the user's request is completely satisfied${!hasNoValidation ? ' and validated' : ''}, or until you require more information from the user.`,
386
386
!isFast&&
387
387
`You must spawn the ${isMax ? 'editor-best-of-n-max' : 'editor-best-of-n'} agent to implement code changes, since it will generate the best code changes.`,
388
-
isMax&&'Spawn the thinker-best-of-n-gpt-5 to solve complex problems.',
388
+
isMax&&'Spawn the thinker-best-of-n-opus to solve complex problems.',
389
389
`After completing the user request, summarize your changes in a sentence${isFast ? '' : ' or a few short bullet points'}.${isSonnet ? " Don't create any summary markdown files or example documentation files, unless asked by the user." : ''}. Don't repeat yourself, especially if you have already concluded and summarized the changes in a previous step -- just end your turn.`,
instructionsPrompt: `As part of the best-of-n workflow for thinking agents, you are the thinking selector agent.
56
+
instructionsPrompt: `As part of the best-of-n workflow for thinking agents, you are the thinking selector agent.
49
57
50
58
## Task Instructions
51
59
@@ -74,6 +82,12 @@ Use <think> tags to briefly consider the thinking outputs as needed to pick the
74
82
If the best one is obvious or the outputs are very similar, you may not need to think very much (a few words suffice) or you may not need to use think tags at all, just pick the best one and output it. You have a dual goal of picking the best thinking and being fast (using as few words as possible).
75
83
76
84
Then, do not write any other explanations AT ALL. You should directly output a single tool call to set_output with the selected thoughtId.`,
0 commit comments