From 685f749a4e58ccbb31381f7cc8e21504649971d5 Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Mon, 26 Jan 2026 13:28:47 -0800 Subject: [PATCH] init beta ANTHROPIC_TOOL_EXAMPLES_BETA_HEADER --- litellm/types/llms/anthropic.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/litellm/types/llms/anthropic.py b/litellm/types/llms/anthropic.py index 8d18322d374..467adb0abb5 100644 --- a/litellm/types/llms/anthropic.py +++ b/litellm/types/llms/anthropic.py @@ -643,6 +643,11 @@ ANTHROPIC_TOOL_SEARCH_BETA_HEADER = "advanced-tool-use-2025-11-20" # Effort beta header constant ANTHROPIC_EFFORT_BETA_HEADER = "effort-2025-11-24" +# Tool examples beta header constant (for Bedrock and Vertex AI) +# Bedrock: Claude Opus 4.5 only +# Vertex AI: All models +ANTHROPIC_TOOL_EXAMPLES_BETA_HEADER = "tool-examples-2025-10-29" + # OAuth constants ANTHROPIC_OAUTH_TOKEN_PREFIX = "sk-ant-oat" ANTHROPIC_OAUTH_BETA_HEADER = "oauth-2025-04-20"