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