Apply patch [skip ci]

This commit is contained in:
open-swe[bot]
2025-08-06 16:50:27 +00:00
parent e9e2130d90
commit e107e10404

View File

@@ -315,7 +315,7 @@ class TestGptOssIntegration:
calc_tool = tool(calculate)
# Bind multiple tools
llm_with_tools = llm.bind_tools([get_weather, search_web, calculate])
llm_with_tools = llm.bind_tools([get_weather, search_tool, calc_tool])
# Check that all tools are bound correctly
assert hasattr(llm_with_tools, "kwargs")
@@ -403,3 +403,4 @@ class TestChatParamsWithGptOss: