address feedback

This commit is contained in:
Dinesh Yeduguru 2025-01-02 18:42:20 -08:00
parent ee542a7373
commit 16d1f66f55
9 changed files with 286 additions and 149 deletions

View file

@ -104,7 +104,7 @@ async def create_agent_turn_with_search_tool(
agent_config = AgentConfig(
**{
**common_params,
"tool_names": [tool_name],
"tools": [tool_name],
}
)
@ -268,7 +268,7 @@ class TestAgents:
agent_config = AgentConfig(
**{
**common_params,
"preprocessing_tools": ["memory"],
"tools": ["memory"],
"tool_choice": ToolChoice.auto,
}
)