Skip to main content

configureToolBox

codebolt.tool.configureToolBox(name: string, config: any): Promise<undefined>
Configures a toolbox with specified settings and parameters.

Parameters

NameTypeDescription
namestringThe name of the toolbox to configure
configanyConfiguration object for the toolbox

Example

await codebolt.codebolttools.configureToolBox("analyticsTools", {
apiKey: "12345",
logging: true
});
console.log("Toolbox configured successfully");