-
Hello, I would like to know how the FileTools used by SoftwareProject is working through the annotations. It is easy to make it work through the sample, my question concerns its usage with different "root" directories, can I implement multiple times FileTools in different base class (that would each have a distinct root directory)? Will tools be registered twice or will they lead to undetermined results ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
This seems to be a requirement for tool namespacing. See #386. Then we could use multiple instances for different projects. |
Beta Was this translation helpful? Give feedback.
-
I fixed #386. Now |
Beta Was this translation helpful? Give feedback.
I fixed #386. Now
PromptRunner.withToolObject
can take aToolObject
that has a naming and filter strategy. This should solve the problem. I'll update the coding agent to take advantage of this.