diff --git a/litellm/llms/anthropic/chat/transformation.py b/litellm/llms/anthropic/chat/transformation.py index b3cf302532..ce874bfde9 100644 --- a/litellm/llms/anthropic/chat/transformation.py +++ b/litellm/llms/anthropic/chat/transformation.py @@ -198,10 +198,14 @@ class AnthropicConfig(AnthropicModelInfo, BaseConfig): "properties": {}, }, ) - input_schema: AnthropicInputSchema = AnthropicInputSchema(**_input_schema) + + _allowed_properties = set(AnthropicInputSchema.__annotations__.keys()) + input_schema_filtered = {k: v for k, v in _input_schema.items() if k in _allowed_properties} + input_anthropic_schema: AnthropicInputSchema = AnthropicInputSchema(**input_schema_filtered) + _tool = AnthropicMessagesTool( name=tool["function"]["name"], - input_schema=input_schema, + input_schema=input_anthropic_schema, ) _description = tool["function"].get("description")