UNPKG

@cwdpk/cocommit

Version:

AI-powered git commit message generator CLI tool (CoCommit)

9 lines 344 B
export interface AIConfig { provider: "openai" | "anthropic" | "google"; model: string; apiKey: string; } export declare function getConfigFilePath(): string; export declare function saveAIConfig(config: AIConfig): Promise<void>; export declare function loadAIConfig(): Promise<AIConfig | null>; //# sourceMappingURL=config.d.ts.map