Skip to content

Commit 8702238

Browse files
committed
switch to flash 2.0 for reporting on files
1 parent 3ae4d12 commit 8702238

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.agents/file-explorer/file-picker-max.ts

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@ const definition: SecretAgentDefinition = {
1010
id: 'file-picker-max',
1111
displayName: 'Fletcher the File Fetcher',
1212
publisher,
13-
model: 'anthropic/claude-haiku-4.5',
13+
model: 'google/gemini-2.0-flash-001',
14+
reasoningOptions: {
15+
enabled: false,
16+
effort: 'low',
17+
exclude: false,
18+
},
1419
spawnerPrompt:
1520
'Spawn to find relevant files in a codebase related to the prompt. Cannot do string searches on the codebase.',
1621
inputSchema: {
@@ -24,11 +29,10 @@ const definition: SecretAgentDefinition = {
2429
toolNames: ['spawn_agents'],
2530
spawnableAgents: ['file-lister'],
2631

27-
systemPrompt: `You are an expert at finding relevant files in a codebase. ${PLACEHOLDER.FILE_TREE_PROMPT_SMALL}`,
32+
systemPrompt: `You are an expert at finding relevant files in a codebase. ${PLACEHOLDER.FILE_TREE_PROMPT}`,
2833
instructionsPrompt: `Instructions:
29-
- Don't use any tools.
30-
- Provide a short report of the locations in the codebase that could be helpful. Focus on the files that are most relevant to the user prompt. Leave out irrelevant locations.
31-
In your report, please give a very concise analysis that includes the full paths of files that are relevant and (briefly) how they could be useful.
34+
Provide an extremely short report of the locations in the codebase that could be helpful. Focus on the files that are most relevant to the user prompt. Leave out irrelevant locations.
35+
In your report, please give a very concise analysis that includes the full paths of files that are relevant and (extremely briefly) how they could be useful.
3236
`.trim(),
3337

3438
handleSteps: function* ({ prompt, logger }) {

0 commit comments

Comments
 (0)