Skip to content

Commit 60a0ff8

Browse files
authored
fix(standard-tests): fix tool description in agent loop test (#33690)
1 parent b3dffc7 commit 60a0ff8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/standard-tests/langchain_tests/integration_tests/chat_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3043,7 +3043,7 @@ def test_agent_loop(self, model: BaseChatModel) -> None:
30433043

30443044
@tool
30453045
def get_weather(location: str) -> str: # noqa: ARG001
3046-
"""Call to surf the web."""
3046+
"""Get the weather at a location."""
30473047
return "It's sunny."
30483048

30493049
llm_with_tools = model.bind_tools([get_weather])

0 commit comments

Comments
 (0)