generator-begcode
Version:
Spring Boot + Angular/React/Vue in one handy generator
6 lines (5 loc) • 323 B
TypeScript
import { MessageChunk, ChunkIdx, ChatLogs, ChatLogType } from '../llm/index.js';
import { Recombiner } from '../rag/index.js';
export declare class MessageRecombiner {
static standard(tokenLimit: number, chatLogs: ChatLogs, chatLogType: ChatLogType, initChunks: ChunkIdx[]): Recombiner<MessageChunk, MessageChunk[]>;
}