diff --git a/pkg/catwalk/provider.go b/pkg/catwalk/provider.go index f4dbbee7f8a11411cc093a475137059bcb663acf..e9c6b074978b53f24ded4a3ee8fffdb7cb9ee656 100644 --- a/pkg/catwalk/provider.go +++ b/pkg/catwalk/provider.go @@ -5,14 +5,12 @@ type Type string // All the supported AI provider types. const ( - TypeOpenAI Type = "openai" - TypeAnthropic Type = "anthropic" - TypeGemini Type = "gemini" - TypeAzure Type = "azure" - TypeBedrock Type = "bedrock" - TypeVertexAI Type = "vertexai" - TypeXAI Type = "xai" - TypeOpenRouter Type = "openrouter" + TypeOpenAI Type = "openai" + TypeAnthropic Type = "anthropic" + TypeGemini Type = "gemini" + TypeAzure Type = "azure" + TypeBedrock Type = "bedrock" + TypeVertexAI Type = "vertexai" ) // InferenceProvider represents the inference provider identifier.