diff --git a/cmd/serve/serve.go b/cmd/serve/serve.go index 6177a92478..8a556a6e62 100644 --- a/cmd/serve/serve.go +++ b/cmd/serve/serve.go @@ -26,7 +26,6 @@ import ( var ( port string backend string - token string ) var ServeCmd = &cobra.Command{ diff --git a/pkg/ai/prompts.go b/pkg/ai/prompts.go index e5b40db05b..6ba5d07053 100644 --- a/pkg/ai/prompts.go +++ b/pkg/ai/prompts.go @@ -2,7 +2,4 @@ package ai const ( default_prompt = "Simplify the following Kubernetes error message and provide a solution in %s: %s" - prompt_a = "Read the following input %s and provide possible scenarios for remediation in %s" - prompt_b = "Considering the following input from the Kubernetes resource %s and the error message %s, provide possible scenarios for remediation in %s" - prompt_c = "Reading the following %s error message and it's accompanying log message %s, how would you simplify this message?" )