-
Notifications
You must be signed in to change notification settings - Fork 44.6k
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
Create run_task python hook to interface with benchmarks #4778
Create run_task python hook to interface with benchmarks #4778
Conversation
✅ Deploy Preview for auto-gpt-docs canceled.
|
You changed AutoGPT's behaviour. The cassettes have been updated and will be merged to the submodule when this Pull Request gets merged. |
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #4778 +/- ##
==========================================
+ Coverage 70.63% 70.93% +0.29%
==========================================
Files 67 68 +1
Lines 3239 3317 +78
Branches 514 531 +17
==========================================
+ Hits 2288 2353 +65
- Misses 783 787 +4
- Partials 168 177 +9
☔ View full report in Codecov by Sentry. |
481be6f
to
ce6bd05
Compare
# the workspace directory so we can bind them to the agent. | ||
workspace_directory = Workspace.make_workspace(workspace_directory) | ||
config.workspace_path = str(workspace_directory) | ||
workspace_directory = Workspace.get_workspace_directory(config, workspace_directory) |
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.
I just created the method so I don't duplicate the method in run task.
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.
This effectively moved the workspace folder from autogpt/auto_gpt_workspace
to autogpt/workspace/auto_gpt_workspace
, which doesn't correspond with our docker setup and documentation.
ce6bd05
to
0327a32
Compare
0327a32
to
5a7dd27
Compare
Signed-off-by: Merwane Hamadi <[email protected]>
5a7dd27
to
685bd30
Compare
Background
Same as this #4772 except we use python method instead of a web server to interface with the benchmarks. And there is no agent or agent insteractions here, just a task.
Changes
Documentation
Test Plan
PR Quality Checklist