Skip to content

Commit d521f19

Browse files
committed
Switch file-picker to grok 4 fast instead Flash
1 parent 01a087f commit d521f19

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.agents/factory/file-picker.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ export const filePicker = (
77
model: ModelName,
88
): Omit<SecretAgentDefinition, 'id'> => ({
99
model,
10-
displayName: AGENT_PERSONAS['file-picker'].displayName,
11-
spawnerPrompt: AGENT_PERSONAS['file-picker'].purpose,
10+
displayName: 'Fletcher the File Fetcher',
11+
spawnerPrompt: 'Spawn to find relevant files in a codebase related to the prompt. Cannot do string searches on the codebase.',
1212
inputSchema: {
1313
prompt: {
1414
type: 'string',

.agents/file-picker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type { SecretAgentDefinition } from './types/secret-agent-definition'
66
const definition: SecretAgentDefinition = {
77
id: 'file-picker',
88
publisher,
9-
...filePicker('google/gemini-2.5-flash'),
9+
...filePicker('x-ai/grok-4-fast'),
1010
}
1111

1212
export default definition

0 commit comments

Comments
 (0)