Skip to content

Commit

Permalink
make artifact name more clear
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonalaird committed Oct 4, 2024
1 parent 25aa67c commit 985fcbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vision_agent/tools/meta_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def show(self, uploaded_file_path: Optional[Union[str, Path]] = None) -> str:
)
output_str = "[Artifacts loaded]\n"
for k in self.artifacts.keys():
output_str += f"Artifact {k} loaded to {str(loaded_path / k)}\n"
output_str += f"Artifact name: {k}, loaded to path: {str(loaded_path / k)}\n"
output_str += "[End of artifacts]\n"
print(output_str)
return output_str
Expand Down

0 comments on commit 985fcbc

Please sign in to comment.