Skip to content

Commit cff43cd

Browse files
committed
Fix #3 : add progress indicators showing LLM provider during generation
Update spinner message to display which LLM (Gemini, OpenAI, Claude, Grok) is being used
1 parent d048215 commit cff43cd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmd/cli/createMsg.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ func CreateCommitMsg () {
9393
// Show generating spinner
9494
spinnerGenerating, err := pterm.DefaultSpinner.
9595
WithSequence("⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏").
96-
Start("Generating commit message...")
96+
Start("Generating commit message with " + commitLLM + "...")
9797
if err != nil {
9898
pterm.Error.Printf("Failed to start spinner: %v\n", err)
9999
os.Exit(1)

0 commit comments

Comments
 (0)