@makolabs/ripple
Version:
Simple Svelte 5 powered component library ✨
14 lines (13 loc) • 366 B
TypeScript
export interface AIConfig {
provider: 'openai' | 'anthropic' | 'ollama';
apiKey?: string;
model?: string;
baseUrl?: string;
}
export declare function getAIConfig(): AIConfig;
export declare function validateAIConfig(config: AIConfig): boolean;
export declare const ENV_GUIDE: {
openai: string[];
anthropic: string[];
ollama: string[];
};