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