Skip to content

Commit 1abc6c5

Browse files
committed
reback test_chat_streaming_multiple_tool_call search tool param
1 parent 2a98f9e commit 1abc6c5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libs/ibm/tests/integration_tests/test_chat_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,7 @@ def test_chat_streaming_multiple_tool_call() -> None:
907907
)
908908

909909
@tool("search")
910-
def search() -> list[str]:
910+
def search(query: str) -> list[str]: # noqa: ARG001
911911
"""Call to search the web for capital of countries"""
912912
return ["capital of america is washington D.C."]
913913

0 commit comments

Comments
 (0)