feat(plan): add 'communicate' tool kind (#17341)

This commit is contained in:
Jerop Kipruto
2026-01-22 16:38:15 -05:00
committed by GitHub
parent 62dd9b5b3c
commit 50985d38c4
3 changed files with 28 additions and 4 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ export class AskUserTool extends BaseDeclarativeTool<
ASK_USER_TOOL_NAME,
'Ask User',
'Ask the user one or more questions to gather preferences, clarify requirements, or make decisions.',
Kind.Other,
Kind.Communicate,
{
type: 'object',
required: ['questions'],
+1
View File
@@ -745,6 +745,7 @@ export enum Kind {
Execute = 'execute',
Think = 'think',
Fetch = 'fetch',
Communicate = 'communicate',
Other = 'other',
}