UNPKG

capsule-ai-cli

Version:

The AI Model Orchestrator - Intelligent multi-model workflows with device-locked licensing

20 lines 642 B
import { Config } from '../types'; export declare class ConfigManager { private store; private fileConfig; constructor(); loadConfig(): Promise<Config>; getConfig(): Config; setConfig(path: string, value: any): void; getApiKey(provider: string): string | undefined; validateProvider(provider: string): { valid: boolean; error?: string; }; private mergeConfigs; isAuthenticated(): boolean; getUserTier(): 'base' | 'super' | undefined; } export declare const configManager: ConfigManager; export declare function loadConfig(): Promise<Config>; //# sourceMappingURL=config.d.ts.map