From 6acc3bb9657d4decaaa20431942c6a2bf849db39 Mon Sep 17 00:00:00 2001 From: Tuan Do <63587709+doquoctuan@users.noreply.github.com> Date: Thu, 16 Jul 2026 15:54:30 +0700 Subject: [PATCH] fix(anthropic): lowercase anthropic-version header key to prevent duplication on /v1/messages --- open-sse/providers/registry/anthropic.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/open-sse/providers/registry/anthropic.js b/open-sse/providers/registry/anthropic.js index 1f6a3494..f83937fe 100644 --- a/open-sse/providers/registry/anthropic.js +++ b/open-sse/providers/registry/anthropic.js @@ -1,5 +1,3 @@ -import { CLAUDE_API_HEADERS } from "../shared.js"; - export default { id: "anthropic", priority: 30, @@ -19,7 +17,7 @@ export default { baseUrl: "https://api.anthropic.com/v1/messages", format: "claude", headers: { - "Anthropic-Version": "2023-06-01", + "anthropic-version": "2023-06-01", "Anthropic-Beta": "claude-code-20250219,interleaved-thinking-2025-05-14", }, },