-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improving path registry #66
Conversation
Jgmedina95
commented
Jan 4, 2024
- Give value to the path_registry. Files names are now files id. Which are the ones the agent will use to use files inside tools (already implemented in simulations and cleaning tools)
- Improve ListRegistryPath as names are hardly self-explanatory, a description of each file is also included.
… tool to directly map pdb file into path registry with file id in new directory
making sure i merged
…gistry. b) improved the descriptions of the query for the modify script tool, and c) include the modified script into the path registry at the end of it
@@ -80,7 +79,7 @@ def make_all_tools( | |||
CheckDirectoryFiles(), | |||
# InstructionSummary(path_registry=path_instance), | |||
ListRegistryPaths(path_registry=path_instance), | |||
MapPath2Name(path_registry=path_instance), | |||
# MapPath2Name(path_registry=path_instance), | |||
Name2PDBTool(path_registry=path_instance), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you sure we want to remove that tool? suppose there are some files provided by users - just a thought
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good point, is just that the agent sometimes adds the same file more than once with the tool taking it made it work better for my examples.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you add unit tests for the new features you added?