You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Your plan for today's work on the AutoGPT Autonomous Agents Hackathon sounds great! To run the official benchmarks in GitHub Actions and provide a comment with the /agent-action command, you should be able to use a command like this:
/agent-action benchmark plan <bot_url> <benchmark_url>
Replace <bot_url> with the URL of your AutoGPT bot and <benchmark_url> with the URL of the official benchmarks. This should help you initiate the benchmarking process and get the results in a comment. Good luck with your hackathon project!
Certainly! You can use the Python click library to create a simple command-line parser for the part after the /agent-action command. Here's a basic example:
With this code, you can create a simple command-line parser that prompts the user for the action, plan, bot URL, and benchmark URL, and then processes the action if it's "benchmark." You can expand upon this by adding the logic to run benchmarks or perform other actions as needed.
Make sure you have the click library installed in your Python environment to use this code. You can install it using pip install click.
The text was updated successfully, but these errors were encountered:
Your plan for today's work on the AutoGPT Autonomous Agents Hackathon sounds great! To run the official benchmarks in GitHub Actions and provide a comment with the /agent-action command, you should be able to use a command like this:
Replace
<bot_url>
with the URL of your AutoGPT bot and<benchmark_url>
with the URL of the official benchmarks. This should help you initiate the benchmarking process and get the results in a comment. Good luck with your hackathon project!Certainly! You can use the Python
click
library to create a simple command-line parser for the part after the/agent-action
command. Here's a basic example:With this code, you can create a simple command-line parser that prompts the user for the action, plan, bot URL, and benchmark URL, and then processes the action if it's "benchmark." You can expand upon this by adding the logic to run benchmarks or perform other actions as needed.
Make sure you have the
click
library installed in your Python environment to use this code. You can install it usingpip install click
.The text was updated successfully, but these errors were encountered: