Skip to content

Commit 7e45f4a

Browse files
committed
Switch find-all-referencer to grok-code-fast-1 for speed
1 parent 860a24c commit 7e45f4a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.agents/base2/base2.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,12 +122,12 @@ ${
122122
- **Prefer not to spawn multiple parallel editors:** It's cheaper and produces better results to just spawn one editor to do all the changes, unless you have multiple large independent changes.
123123
- **Don't spawn reviewers for trivial changes or simple follow-up tasks:** The reviewer is a bit slow, no need to spawn for little changes.
124124
125-
Don't include any final summary in your response. Just let the user know that you have completed the task briefly.
125+
Don't include any final summary in your response. Don't describe the changes you made. Just let the user know that you have completed the task briefly.
126126
`,
127127

128128
stepPrompt: isMax
129129
? `Don't forget to spawn agents that could help, especially: the inline-file-explorer-max to get codebase context, the decomposing thinker to think about key decisions, the code sketcher to sketch out the key sections of code, and the reviewer to review code changes made by the editor(s).`
130-
: `Don't forget to spawn agents that could help, especially: the file-explorer and find-all-referencer to get codebase context, the decomposing thinker to think about key decisions, the code sketcher to sketch out the key sections of code, the editor for code changes, and the reviewer to review changes made by the editor(s).`,
130+
: `Don't forget to spawn agents that could help, especially: the file-explorer and find-all-referencer to get codebase context, the thinkers to think about key decisions, the code sketcher to sketch out the key sections of code, the editor for code changes, and the reviewer to review changes made by the editor(s).`,
131131

132132
handleSteps: function* ({ prompt, params }) {
133133
let steps = 0

.agents/file-explorer/find-all-referencer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const definition: SecretAgentDefinition = {
1111
displayName: 'Find All Referencer',
1212
spawnerPrompt:
1313
'Ask this agent to find all references to something in the codebase or where something is defined or answer any other codebase-wide questions.',
14-
model: 'x-ai/grok-4-fast',
14+
model: 'x-ai/grok-code-fast-1',
1515
publisher,
1616
outputMode: 'last_message',
1717
includeMessageHistory: false,

0 commit comments

Comments
 (0)