From 49a34f9c3a39756365c910c6e3245ab971d6804e Mon Sep 17 00:00:00 2001 From: Carl Gabel Date: Fri, 6 Feb 2026 01:50:11 +0000 Subject: [PATCH] fix: bump @anthropic-ai/vertex-sdk to ^0.13.0 for global region support The pinned version (0.7.0) constructs an incorrect base URL for the Vertex AI global endpoint: `global-aiplatform.googleapis.com` instead of `aiplatform.googleapis.com`. This causes a 404 when using models like Claude Opus 4.6 that are available on the global endpoint. The fix was released upstream in v0.13.0 (anthropics/anthropic-sdk-typescript#449). No breaking API changes exist between 0.7.0 and 0.13.0+. Fixes: global region 404 for Claude on Vertex AI --- src/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/package.json b/src/package.json index e1901682d5..b039fb6651 100644 --- a/src/package.json +++ b/src/package.json @@ -461,7 +461,7 @@ "sambanova-ai-provider": "^1.2.2", "@anthropic-ai/bedrock-sdk": "^0.10.2", "@anthropic-ai/sdk": "^0.37.0", - "@anthropic-ai/vertex-sdk": "^0.7.0", + "@anthropic-ai/vertex-sdk": "^0.13.0", "@aws-sdk/client-bedrock-runtime": "^3.922.0", "@aws-sdk/credential-providers": "^3.922.0", "@google/genai": "^1.29.1",