Skip to content

Commit 0c747af

Browse files
author
xianghuijin
committed
refactor: streamline tool_choice reset logic
This update moves the tool_choice reset logic to a more appropriate location within the RunImpl class, ensuring that the original agent's model_settings remains unmodified during the reset process. The logic now checks for problematic scenarios before creating a modified copy of the agent's settings, maintaining expected behavior across sequential runs. This change enhances clarity and efficiency in handling tool choices. Addresses previous feedback regarding the modification of the agent instance and improves the overall structure of the reset logic.
1 parent 6ed0bee commit 0c747af

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

src/agents/_run_impl.py

+10-9
Original file line numberDiff line numberDiff line change
@@ -211,15 +211,6 @@ async def execute_tools_and_side_effects(
211211
# Reset tool_choice to "auto" after tool execution to prevent infinite loops
212212
if processed_response.functions or processed_response.computer_actions:
213213
tools = agent.tools
214-
# Only reset in the problematic scenarios where loops are likely unintentional
215-
if cls._should_reset_tool_choice(agent.model_settings, tools):
216-
# Create a modified copy instead of modifying the original agent
217-
new_model_settings = dataclasses.replace(
218-
agent.model_settings,
219-
tool_choice="auto"
220-
)
221-
# Create a new internal agent with updated settings
222-
agent = dataclasses.replace(agent, model_settings=new_model_settings)
223214

224215
if (
225216
run_config.model_settings and
@@ -233,6 +224,16 @@ async def execute_tools_and_side_effects(
233224
# Create a new run_config with the new settings
234225
run_config = dataclasses.replace(run_config, model_settings=new_run_config_settings)
235226

227+
# Only reset in the problematic scenarios where loops are likely unintentional
228+
if cls._should_reset_tool_choice(agent.model_settings, tools):
229+
# Create a modified copy instead of modifying the original agent
230+
new_model_settings = dataclasses.replace(
231+
agent.model_settings,
232+
tool_choice="auto"
233+
)
234+
# Create a new internal agent with updated settings
235+
agent = dataclasses.replace(agent, model_settings=new_model_settings)
236+
236237
# Second, check if there are any handoffs
237238
if run_handoffs := processed_response.handoffs:
238239
return await cls.execute_handoffs(

0 commit comments

Comments
 (0)