From be061da5b65045938acd70ad2eb2d21b87d2d6bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20Stepp=C3=A9?= Date: Thu, 30 Mar 2023 13:37:10 +0200 Subject: [PATCH] feat: output selected backend (#153) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexandre Steppé --- cmd/auth/auth.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/auth/auth.go b/cmd/auth/auth.go index 7bb5dfe..ca695ca 100644 --- a/cmd/auth/auth.go +++ b/cmd/auth/auth.go @@ -35,6 +35,7 @@ var AuthCmd = &cobra.Command{ // override the default backend if a flag is provided if backend != "" { backendType = backend + color.Green("Using %s as backend AI provider", backendType) } fmt.Printf("Enter %s Key: ", backendType)