Skip to content

Commit

Permalink
Update executor.py
Browse files Browse the repository at this point in the history
  • Loading branch information
joaomdmoura committed Jan 14, 2024
1 parent a25a248 commit df46b95
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/crewai/agents/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,9 @@ def _iter_next_step(
observation = InvalidTool().run(
{
"requested_tool_name": agent_action.tool,
"available_tool_names": [tool.name for tool in name_to_tool_map.values()],
"available_tool_names": [
tool.name for tool in name_to_tool_map.values()
],
},
verbose=self.verbose,
color=None,
Expand Down

0 comments on commit df46b95

Please sign in to comment.