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