Aggregate an array of Tool instances into a toolkit
Builds both the dispatch map and the JSON schema string from the tool array. Pass the result directly to AgentPoolOptions and AgentTaskSpec.
Tool instances to aggregate
Toolkit with toolMap and toolsJson
toolMap
toolsJson
const { toolMap, toolsJson } = createToolkit([ new SearchTool(chunks, reranker), new ReadFileTool(resources), new GrepTool(resources),]); Copy
const { toolMap, toolsJson } = createToolkit([ new SearchTool(chunks, reranker), new ReadFileTool(resources), new GrepTool(resources),]);
Aggregate an array of Tool instances into a toolkit
Builds both the dispatch map and the JSON schema string from the tool array. Pass the result directly to AgentPoolOptions and AgentTaskSpec.