chatSummary
Variable: chatSummary
const chatSummary: {
summarize: (messages: {
content: string;
role: string;
}[], depth: number) => Promise<GetSummarizeResponse>;
summarizeAll: () => Promise<GetSummarizeAllResponse>;
};
Defined in: packages/codeboltjs/src/modules/history.ts:26
Object with methods for summarizing chat history. Provides functionality to create summaries of conversation history.