Email / src /tools /base-tool.js
lenzcom's picture
Upload folder using huggingface_hub
e706de2 verified
/**
* BaseTool
*
* Abstract tool class with JSON Schema support
*
* @module src/tools/base-tool.js
*/
export class BaseTool {
constructor(options = {}) {
// TODO: Implement constructor
throw new Error('BaseTool not yet implemented');
}
// TODO: Add methods
}
export default BaseTool;