UNPKG

create-ai-chat-context-experimental

Version:

Phase 2: TypeScript rewrite - AI Chat Context & Memory System with conversation extraction and AICF format support (powered by aicf-core v2.1.0).

18 lines 510 B
/** * This file is part of create-ai-chat-context-experimental. * Licensed under the GNU Affero General Public License v3.0 or later (AGPL-3.0-or-later). * See LICENSE file for details. */ export interface ChatEntry { number: number; startLine: number; content: string[]; } export interface ArchiveOptions { keep?: number; } /** * Archive old conversation logs */ export declare function archiveConversations(options?: ArchiveOptions): Promise<void>; //# sourceMappingURL=Archive.d.ts.map