feat: personalAssistant successfully delegates to other agents

This commit is contained in:
Avraham Sakal
2025-05-04 15:06:10 -04:00
parent be6f48659f
commit 0c1f85996c
5 changed files with 243 additions and 59 deletions
+12
View File
@@ -78,6 +78,18 @@ export const personalAssistantAgent: Agent = {
// }
// },
}),
echo: tool({
description: "Echoes the message.",
parameters: jsonSchema<{ message: string }>({
type: "object",
properties: {
message: {
type: "string",
description: "The message to echo.",
},
},
}),
}),
// say: tool({
// description: "Say something.",