Apply patch [skip ci]

This commit is contained in:
open-swe[bot]
2025-08-11 20:18:59 +00:00
parent 2d4988dc59
commit ad8946655f
@@ -806,7 +806,7 @@ def create_react_agent(
try:
if hasattr(actual_schema, "__call__"):
# For BaseModel classes
structured_response = actual_schema(**response_tool_call["args"])
structured_response = actual_schema(**response_tool_call["args"]) # type: ignore[operator]
else:
# For dict schemas, just return the args
structured_response = response_tool_call["args"]
@@ -1044,3 +1044,4 @@ __all__ = [