Skip to content

Commit

Permalink
Remove debugging printing statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Jgmedina95 committed Jan 22, 2024
1 parent 3bdf0dc commit 666cbe9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ def __init__(self, path_registry: Optional[PathRegistry], llm):
super().__init__()
self.path_registry = path_registry
self.llm = llm
print(f"fModifyScriptTool initialized, llm is {llm}")

def _run(self, *args, **input):
if self.llm is None: # this should not happen
Expand Down
2 changes: 0 additions & 2 deletions mdagent/utils/path_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,13 +163,11 @@ def write_file_name(self, type: FileType, **kwargs):
if type == FileType.PROTEIN:
file_name += f"{protein_name}_{description}_{time_stamp}.{file_format}"
if type == FileType.SIMULATION:
print("im here inside")
if conditions:
file_name += (
f"{type_of_sim}_{protein_file_id}_{conditions}_{time_stamp}.py"
)
elif modified:
print("I got here!!!!")
file_name += f"{Sim_id}_MOD_{time_stamp}.py"
else:
file_name += f"{type_of_sim}_{protein_file_id}_{time_stamp}.py"
Expand Down

0 comments on commit 666cbe9

Please sign in to comment.