Installation

Installation

To get started with the AI Model Tracking Library, install the package using npm:

npm install @handit.ai/node

Note: The minimum supported Node.js version is Node 12, as this package requires fetch to be available.

After installing the package, you can import it in your project:

const { config, 
        interceptAxiosRequest, 
        interceptFetchRequest, 
        captureModel } = require('@handit.ai/node');

Now you are ready to configure the library and start tracking.

Last updated