Skip to content

Commit

Permalink
Fixed incorrect print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Elektra58 authored Jun 27, 2024
1 parent 94f79ca commit c297f4c
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 @@ -365,7 +365,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 c297f4c

Please sign in to comment.