File size: 334 Bytes
e706de2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**

 * 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;