Skip to content

Commit 09bb841

Browse files
committed
Update base2-free to use regular tools instead of agents that run multiple tool calls in parallel
1 parent 912e3f2 commit 09bb841

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

agents/base2/base2.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,16 @@ export function createBase2(
6868
!noAskUser && 'ask_user',
6969
'skill',
7070
'set_output',
71+
isFree && 'code_search',
72+
isFree && 'list_directory',
73+
isFree && 'glob',
7174
),
7275
spawnableAgents: buildArray(
7376
!isMax && 'file-picker',
7477
isMax && 'file-picker-max',
75-
'code-searcher',
76-
'directory-lister',
77-
'glob-matcher',
78+
!isFree && 'code-searcher',
79+
!isFree && 'directory-lister',
80+
!isFree && 'glob-matcher',
7881
'researcher-web',
7982
'researcher-docs',
8083
isFree ? 'commander-lite' : 'commander',

0 commit comments

Comments
 (0)