Email / src /llm /streaming-llm.js
lenzcom's picture
Upload folder using huggingface_hub
e706de2 verified
/**
* StreamingLLM
*
* Mixin for streaming support in LLMs
*
* @module src/llm/streaming-llm.js
*/
export class StreamingLLM {
constructor(options = {}) {
// TODO: Implement constructor
throw new Error('StreamingLLM not yet implemented');
}
// TODO: Add methods
}
export default StreamingLLM;