-
Notifications
You must be signed in to change notification settings - Fork 44.5k
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
Update the search files to address those arguments #2673
Comments
Same here, would be nice to see a improvement, should be just easy to add more parameter to the serach_files function:
|
I have the same problem. ACTION: COMMAND = search_files ARGUMENTS = {'directory': 'C:/', 'filename_pattern': '*match.com*'}
SYSTEM: Command search_files returned: Error: search_files() got an unexpected keyword argument 'filename_pattern' |
SYSTEM: Command search_files returned: Error: search_files() got an unexpected keyword argument 'filename_pattern' im also getting the same |
that's actually a pretty neat and clever idea - as long as we can formalize the param list for some "algo-safe" commands to use some contracts, we could in fact use stuff like map/reduce and similar algos to parallelize actions locally that would normally be CPU bound. Also, it could help reduce unnecessary API calls / token waste ! Inspired by this: |
This issue has automatically been marked as stale because it has not had any activity in the last 50 days. You can unstale it by commenting or removing the label. Otherwise, this issue will be closed in 10 days. |
This issue was closed automatically because it has been stale for 10 days with no activity. |
Duplicates
Summary 💡
NEXT ACTION: COMMAND = search_files ARGUMENTS = {'directory': './', 'filename': 'task_specific_algorithm.py'}
NEXT ACTION: COMMAND = search_files ARGUMENTS = {'directory': './', 'pattern': 'task_specific_algorithm.py'}
NEXT ACTION: COMMAND = search_files ARGUMENTS = {'directory': './', 'query': 'task_specific_algorithm.py'}
Examples 🌈
I just want it to be able to do those actions, it would help the ai to navigate more easily I believe. It is often asking for those same functions. I'm wondering if you couldn't ask the ai to come up with the function dynamically.
Motivation 🔦
It is really limited in its way to navigate info gathered into folders/files, I think that might help.
The text was updated successfully, but these errors were encountered: