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
// Add subagent tools message when using parent's tools for prompt caching
192
192
if(useParentTools){
193
-
addendum+=`\n\nYou are a subagent that only has access to the following tools: ${agentTemplate.toolNames.join(', ')}. Do not attempt to use any other tools.`
193
+
if(agentTemplate.toolNames.length>0){
194
+
addendum+=`\n\nYou are a subagent that only has access to the following tools: ${agentTemplate.toolNames.join(', ')}. Do not attempt to use any other tools.`
195
+
}else{
196
+
addendum+=`\n\nYou are a subagent and do not have access to any tools specified earlier in the conversation.`
197
+
}
194
198
195
199
// For subagents with inheritSystemPrompt, include full spawnable agents spec
196
200
// since the parent's system prompt may not have these agents listed
0 commit comments