chore: remove not used types

Kujtim Hoxha created

Change summary

pkg/catwalk/provider.go | 14 ++++++--------
1 file changed, 6 insertions(+), 8 deletions(-)

Detailed changes

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.