executeTool
codebolt.tool.executeTool(toolbox: string, toolName: string, params: object): Promise<undefined>
Executes a specific tool from a configured toolbox with provided parameters.
Parameters
Name | Type | Description |
---|---|---|
toolbox | string | The name of the toolbox containing the tool |
toolName | string | The name of the tool to execute |
params | object | Parameters to pass to the tool execution |
Example
const result = await codebolt.codebolttools.executeTool(
"myToolBox",
"dataProcessor",
{ inputData: "test" }
);
console.log("Tool execution result:", result);