configureToolBox
codebolt.tool.configureToolBox(name: string, config: any): Promise<undefined>
Configures a toolbox with specified settings and parameters.
Parameters
Name | Type | Description |
---|---|---|
name | string | The name of the toolbox to configure |
config | any | Configuration object for the toolbox |
Example
await codebolt.codebolttools.configureToolBox("analyticsTools", {
apiKey: "12345",
logging: true
});
console.log("Toolbox configured successfully");