Browse Source

feat: 支持仅使用x-api-key获取anthropic格式的模型列表 注释增加

hackerxiao 2 tháng trước cách đây
mục cha
commit
8e629a2a11
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      middleware/auth.go

+ 1 - 1
middleware/auth.go

@@ -193,7 +193,7 @@ func TokenAuth() func(c *gin.Context) {
 			}
 			c.Request.Header.Set("Authorization", "Bearer "+key)
 		}
-		// 检查path包含/v1/messages
+		// 检查path包含/v1/messages 或 /v1/models 
 		if strings.Contains(c.Request.URL.Path, "/v1/messages") || strings.Contains(c.Request.URL.Path, "/v1/models") {
 			anthropicKey := c.Request.Header.Get("x-api-key")
 			if anthropicKey != "" {