Skip to content

Commit 3c38486

Browse files
committed
Update
1 parent fea0442 commit 3c38486

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libs/agno/tests/integration/agent/test_reasoning_content_knowledge_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def test_knowledge_tools_streaming(knowledge_base):
108108
)
109109

110110
think_called = False
111-
for tool_call in response.formatted_tool_calls:
111+
for tool_call in agent.run_response.formatted_tool_calls:
112112
if "think" in tool_call:
113113
think_called = True
114114
if think_called:

libs/agno/tests/integration/models/xai/test_tool_use.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,5 +212,5 @@ def test_tool_call_list_parameters():
212212
tool_calls.extend(msg.tool_calls)
213213
for call in tool_calls:
214214
if call.get("type", "") == "function":
215-
assert call["function"]["name"] in ["get_contents", "exa_answer"]
215+
assert call["function"]["name"] in ["search_exa", "get_contents", "exa_answer"]
216216
assert response.content is not None

0 commit comments

Comments
 (0)