From e107e104045bcd4a2b36848d640722b376f1b8e1 Mon Sep 17 00:00:00 2001 From: "open-swe[bot]" Date: Wed, 6 Aug 2025 16:50:27 +0000 Subject: [PATCH] Apply patch [skip ci] --- .../ollama/tests/unit_tests/test_chat_models_gpt_oss.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/partners/ollama/tests/unit_tests/test_chat_models_gpt_oss.py b/libs/partners/ollama/tests/unit_tests/test_chat_models_gpt_oss.py index 114e24af0ab..5761f1f7cb5 100644 --- a/libs/partners/ollama/tests/unit_tests/test_chat_models_gpt_oss.py +++ b/libs/partners/ollama/tests/unit_tests/test_chat_models_gpt_oss.py @@ -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: +