Skip to content

Commit

Permalink
Merge pull request #153 from Elektra58/patch-7
Browse files Browse the repository at this point in the history
Fixed incorrect print statement
  • Loading branch information
VRSEN authored Sep 30, 2024
2 parents c990f59 + c297f4c commit f7d31f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agency_swarm/agents/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ def get_id_from_file(f_path):
print("Detected files without FileSearch. Adding FileSearch tool...")
self.add_tool(FileSearch)
if CodeInterpreter not in self.tools and code_interpreter_ids:
print("Detected files without FileSearch. Adding FileSearch tool...")
print("Detected files without CodeInterpreter. Adding CodeInterpreter tool...")
self.add_tool(CodeInterpreter)

self.add_file_ids(file_search_ids, "file_search")
Expand Down

0 comments on commit f7d31f6

Please sign in to comment.