UNPKG

bodhi-commit-genius-js

Version:

🚀 Smart commit message generator with AI - supports local LLMs and cloud APIs

8 lines (7 loc) • 232 B
interface GenerateOptions { provider: 'ollama' | 'openai' | 'simple'; model?: string; apiKey?: string; } export declare function generateCommitMessage(diff: string, options: GenerateOptions): Promise<string>; export {};