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
@@ -29,7 +28,7 @@ export function createAgentTool(
29
28
returnnewDynamicStructuredTool({
30
29
name: 'create_agent',
31
30
description:
32
-
'Create/add/make a new agent configuration for a specific user. Provide the agent profile (name, group, description) and optional configuration overrides for graph, memory, rag, plugins, mcp_servers, and prompts.',
31
+
'Create a new agent configuration with default settings. Only accepts agent profile (name, group, description, contexts). All other configuration (graph, memory, rag, mcp_servers) will use default values. To modify configuration after creation, use update_agent tool.',
33
32
schema: CreateAgentSchema,
34
33
func: async(rawInput)=>{
35
34
letinput: CreateAgentInput;
@@ -105,10 +104,8 @@ export function createAgentTool(
0 commit comments