UNPKG

woaru

Version:

Universal Project Setup Autopilot - Analyze and automatically configure development tools for ANY programming language

26 lines 759 B
/** * AI Control Center - Interactive menu system for managing AI providers * Implements the complete interface expected by the translation keys */ export interface AiProviderConfig { enabled: boolean; model?: string; id?: string; providerType?: string; [key: string]: unknown; } export interface AiConfig { multiAi?: boolean; primaryProvider?: string; lastDataUpdate?: string; [providerId: string]: AiProviderConfig | boolean | string | undefined; } /** * Main entry point for AI Control Center */ export declare function showAiControlCenter(): Promise<void>; /** * Show AI Setup interface (standalone command) */ export declare function showAiSetup(): Promise<void>; //# sourceMappingURL=ai-control-center.d.ts.map