diff --git a/cmd/run.go b/cmd/run.go index 0c95cf62..486f938a 100644 --- a/cmd/run.go +++ b/cmd/run.go @@ -21,9 +21,10 @@ import ( ) var runCmd = &cobra.Command{ - Use: "run", - Args: cobra.NoArgs, - Short: "Run the production server", + Hidden: true, // not working yet + Use: "run", + Args: cobra.NoArgs, + Short: "Run the production server", Long: `Run the production server for connecting to the Agentuity Cloud. This command starts a local production server that connects to the Agentuity Cloud diff --git a/internal/util/api.go b/internal/util/api.go index a8c2062e..41ec32c7 100644 --- a/internal/util/api.go +++ b/internal/util/api.go @@ -279,7 +279,7 @@ func GetURLs(logger logger.Logger) CLIUrls { appUrl = "https://app.agentuity.io" } if gravityUrl == "" { - gravityUrl = "grpc://gravity.agentuity.com" + gravityUrl = "grpc://devmode.agentuity.com" } if apiUrl == "https://api.agentuity.com" && transportUrl != "https://agentuity.ai" { logger.Debug("switching transport url to production since the api url is production")