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