From c10e5c291cc9e3da1364e8509bb3644a9450ef25 Mon Sep 17 00:00:00 2001 From: Michael Sverdlov Date: Mon, 23 Sep 2024 17:28:11 +0300 Subject: [PATCH] Remove redundant log Signed-off-by: Michael Sverdlov --- docs/general/ai/help.go | 2 +- main.go | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/general/ai/help.go b/docs/general/ai/help.go index 9c4e35142..1d766bb0c 100644 --- a/docs/general/ai/help.go +++ b/docs/general/ai/help.go @@ -3,5 +3,5 @@ package ai var Usage = []string{"how"} func GetDescription() string { - return "This AI-based interface converts your natural language inputs into fully functional JFrog CLI commands. This is an interactive command that accepts no arguments." + return "An AI-based interface that converts natural language inputs into AI-generated JFrog CLI commands." } diff --git a/main.go b/main.go index defb2d0c4..dab9625c5 100644 --- a/main.go +++ b/main.go @@ -278,7 +278,6 @@ func getCommands() ([]cli.Command, error) { Usage: aiDocs.GetDescription(), HelpName: corecommon.CreateUsage("how", aiDocs.GetDescription(), aiDocs.Usage), BashComplete: corecommon.CreateBashCompletionFunc(), - Category: otherCategory, Action: ai.HowCmd, }, {