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
Copy file name to clipboardExpand all lines: cagent-schema.json
+25Lines changed: 25 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -432,6 +432,31 @@
432
432
"type": "boolean",
433
433
"description": "Whether to ignore VCS files (.git directories and .gitignore patterns) in filesystem operations. Default: true",
434
434
"default": true
435
+
},
436
+
"defer": {
437
+
"description": "Enable deferred loading for tools in this toolset. Set to true to defer all tools, or an array of tool names to defer only those tools. Deferred tools are not loaded into the agent's context immediately, but can be discovered and loaded on-demand using search_tool and add_tool.",
438
+
"oneOf": [
439
+
{
440
+
"type": "boolean",
441
+
"description": "Set to true to defer all tools"
442
+
},
443
+
{
444
+
"type": "array",
445
+
"description": "Array of tool names to defer",
446
+
"items": {
447
+
"type": "string"
448
+
}
449
+
}
450
+
],
451
+
"examples": [
452
+
true,
453
+
["read_file", "write_file"]
454
+
]
455
+
},
456
+
"timeout": {
457
+
"type": "integer",
458
+
"description": "Timeout in seconds for the fetch tool",
0 commit comments