try to use local ai to generate commit message

This commit is contained in:
Christoph Brandau
2026-07-02 19:59:16 +02:00
parent 2a96e79d27
commit f2aa48d2ec
13 changed files with 3889 additions and 62 deletions
+7
View File
@@ -7,6 +7,13 @@ export type FileStatusKind =
| "conflicted"
| "unknown";
export type CommitAiPhase = "idle" | "loading" | "ready" | "error";
export interface CommitAiStatus {
phase: CommitAiPhase;
error: string | null;
}
export interface GitStatus {
repo_path: string;
current_branch: string | null;