Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ func checkForUpgrade(ctx context.Context, logger logger.Logger, force bool) {
logger.Error("Failed to check for latest release: %s", err)
}
if ok && force {
tui.ShowWarning("Agentuity CLI was upgraded. Please re-run the command again to continue.")
tui.ShowSuccess("Agentuity CLI was upgraded. Please re-run the command again to continue.")
os.Exit(1) // force an exit after upgrade if executed
}
}
Expand Down
2 changes: 1 addition & 1 deletion internal/bundler/groq.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ func init() {
Before: generateEnvGuard("GROQ_API_KEY", generateGatewayEnvGuard("GROQ_API_KEY", "process.env.AGENTUITY_SDK_KEY", "GROQ_BASE_URL", "groq")),
},
}
}
}
Loading