Skip to main content

executeTool

codebolt.tool.executeTool(toolbox: string, toolName: string, params: object): Promise<undefined>
Executes a specific tool from a configured toolbox with provided parameters.

Parameters

NameTypeDescription
toolboxstringThe name of the toolbox containing the tool
toolNamestringThe name of the tool to execute
paramsobjectParameters to pass to the tool execution

Example

const result = await codebolt.codebolttools.executeTool(
"myToolBox",
"dataProcessor",
{ inputData: "test" }
);
console.log("Tool execution result:", result);