This document describes how to interact with the project's CLI (Command Line Interface). It includes the types of outputs you can expect from each command. Note that the agents stop command will terminate any process running on port 8000.
Running the ./run command without any parameters will display the help message, which provides a list of available commands and options. Additionally, you can append --help to any command to view help information specific to that command.
./runOutput:
Usage: cli.py [OPTIONS] COMMAND [ARGS]...
Options:
--help Show this message and exit.
Commands:
agents Commands to create, start and stop agents
benchmark Commands to start the benchmark and list tests and categories
setup Installs dependencies needed for your system.
If you need assistance with any command, simply add the --help parameter to the end of your command, like so:
./run COMMAND --helpThis will display a detailed help message regarding that specific command, including a list of any additional options and arguments it accepts.
./run setupOutput:
Setup initiated
Installation has been completed.
This command initializes the setup of the project.
a. List All Agents
./run agents listOutput:
Available agents: 🤖
🐙 forge
🐙 autogpt
Lists all the available agents.
b. Create a New Agent
./run agents create my_agentOutput:
🎉 New agent 'my_agent' created and switched to the new directory in autogpts folder.
Creates a new agent named 'my_agent'.
c. Start an Agent
./run agents start my_agentOutput:
... (ASCII Art representing the agent startup)
[Date and Time] [forge.sdk.db] [DEBUG] 🐛 Initializing AgentDB with database_string: sqlite:///agent.db
[Date and Time] [forge.sdk.agent] [INFO] 📝 Agent server starting on http://0.0.0.0:8000
Starts the 'my_agent' and displays startup ASCII art and logs.
d. Stop an Agent
./run agents stopOutput:
Agent stopped
Stops the running agent.
a. List Benchmark Categories
./run benchmark categories listOutput:
Available categories: 📚
📖 code
📖 safety
📖 memory
... (and so on)
Lists all available benchmark categories.
b. List Benchmark Tests
./run benchmark tests listOutput:
Available tests: 📚
📖 interface
🔬 Search - TestSearch
🔬 Write File - TestWriteFile
... (and so on)
Lists all available benchmark tests.
c. Show Details of a Benchmark Test
./run benchmark tests details TestWriteFileOutput:
TestWriteFile
-------------
Category: interface
Task: Write the word 'Washington' to a .txt file
... (and other details)
Displays the details of the 'TestWriteFile' benchmark test.
d. Start Benchmark for the Agent
./run benchmark start my_agentOutput:
(more details about the testing process shown whilst the test are running)
============= 13 failed, 1 passed in 0.97s ============...
Displays the results of the benchmark tests on 'my_agent'.