[LLM Translation] - Bug fix Anthropic Tool calling (#12959)

* fix _map_tool_helper

* fix linting
This commit is contained in:
Ishaan Jaff
2025-07-24 19:55:52 -07:00
committed by GitHub
parent 939f44f398
commit 6174609685
@@ -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")