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).

34 lines 908 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 Template { name: string; description: string; dir: string; } export interface TemplateEntry extends Template { key: string; } /** * Available project templates */ export declare const TEMPLATES: Record<string, Template>; /** * Get template configuration */ export declare function getTemplate(templateName: string): Template; /** * Get all available templates */ export declare function listTemplates(): TemplateEntry[]; /** * Get template directory path */ export declare function getTemplateDir(templateName: string): string; /** * Check if template exists */ export declare function templateExists(templateName: string): boolean; //# sourceMappingURL=Templates.d.ts.map