fix(provider/azure): lint err

This commit is contained in:
Hoshina
2026-03-15 12:45:11 +08:00
parent 5a251b46af
commit f7dd040ae4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -128,7 +128,7 @@ func (p *Provider) Chat(
// Azure uses api-key header instead of Authorization: Bearer
req.Header.Set("Content-Type", "application/json")
if p.apiKey != "" {
req.Header.Set("api-key", p.apiKey)
req.Header.Set("Api-Key", p.apiKey)
}
resp, err := p.httpClient.Do(req)
+1 -1
View File
@@ -53,7 +53,7 @@ func TestProviderChat_AzureAuthHeader(t *testing.T) {
var capturedAuth string
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
capturedAPIKey = r.Header.Get("api-key")
capturedAPIKey = r.Header.Get("Api-Key")
capturedAuth = r.Header.Get("Authorization")
writeValidResponse(w)
}))