Skip to content

Commit 34fdbaa

Browse files
authored
* remove arena * refactor: Remove Arena intake workflow * Remove all mention of the arena * remove evo.ninja
1 parent 818d391 commit 34fdbaa

File tree

382 files changed

+1
-2315
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

382 files changed

+1
-2315
lines changed

.github/labeler.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@ Frontend:
1414
- changed-files:
1515
- any-glob-to-any-file: frontend/**
1616

17-
Arena:
18-
- changed-files:
19-
- any-glob-to-any-file: arena/**
20-
2117
documentation:
2218
- changed-files:
2319
- any-glob-to-any-file: docs/**

.github/workflows/arena-intake.yml

Lines changed: 0 additions & 169 deletions
This file was deleted.

.gitignore

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,3 @@ pri*
172172
# ignore
173173
ig*
174174
.github_access_token
175-
arena/TestAgent.json
176-
177-
# evo.ninja
178-
autogpts/evo.ninja/*
179-
!autogpts/evo.ninja/setup

QUICKSTART.md

Lines changed: 1 addition & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ This project supports Linux (Debian based), Mac, and Windows Subsystem for Linux
3939

4040
The first command you need to use is `./run setup` This will guide you through the process of setting up your system.
4141
Initially you will get instructions for installing flutter, chrome and setting up your github access token like the following image:
42-
43-
> Note: for advanced users. The github access token is only needed for the ./run arena enter command so the system can automatically create a PR
44-
4542

4643
![Setup the Project](docs/content/imgs/quickstart/005_setup.png)
4744

@@ -92,34 +89,10 @@ Tips for naming your agent:
9289
* Give it its own unique name, or name it after yourself
9390
* Include an important aspect of your agent in the name, such as its purpose
9491

95-
Examples: `SwiftyosAssistant`, `PwutsPRAgent`, `Narvis`, `evo.ninja`
92+
Examples: `SwiftyosAssistant`, `PwutsPRAgent`, `MySuperAgent`
9693

9794
![Create an Agent](docs/content/imgs/quickstart/007_create_agent.png)
9895

99-
### Optional: Entering the Arena
100-
101-
Entering the Arena is an optional step intended for those who wish to actively participate in the agent leaderboard. If you decide to participate, you can enter the Arena by running `./run arena enter YOUR_AGENT_NAME`. This step is not mandatory for the development or testing of your agent.
102-
103-
Entries with names like `agent`, `ExampleAgent`, `test_agent` or `MyExampleGPT` will NOT be merged. We also don't accept copycat entries that use the name of other projects, like `AutoGPT` or `evo.ninja`.
104-
105-
![Enter the Arena](docs/content/imgs/quickstart/008_enter_arena.png)
106-
107-
> **Note**
108-
> For advanced users, create a new branch and create a file called YOUR_AGENT_NAME.json in the arena directory. Then commit this and create a PR to merge into the main repo. Only single file entries will be permitted. The json file needs the following format:
109-
> ```json
110-
> {
111-
> "github_repo_url": "https://github.com/Swiftyos/YourAgentName",
112-
> "timestamp": "2023-09-18T10:03:38.051498",
113-
> "commit_hash_to_benchmark": "ac36f7bfc7f23ad8800339fa55943c1405d80d5e",
114-
> "branch_to_benchmark": "master"
115-
> }
116-
> ```
117-
> - `github_repo_url`: the url to your fork
118-
> - `timestamp`: timestamp of the last update of this file
119-
> - `commit_hash_to_benchmark`: the commit hash of your entry. You update each time you have an something ready to be officially entered into the hackathon
120-
> - `branch_to_benchmark`: the branch you are using to develop your agent on, default is master.
121-
122-
12396
## Running your Agent
12497

12598
Your agent can started using the `./run agent start YOUR_AGENT_NAME`

README.md

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,6 @@ Be part of the revolution! **AutoGPT** is here to stay, at the forefront of AI i
1818
 | 
1919
**🛠️ [Build your own Agent - Quickstart](QUICKSTART.md)**
2020

21-
## 🥇 Current Best Agent: evo.ninja
22-
[Current Best Agent]: #-current-best-agent-evoninja
23-
24-
The AutoGPT Arena Hackathon saw [**evo.ninja**](https://github.com/polywrap/evo.ninja) earn the top spot on our Arena Leaderboard, proving itself as the best open-source generalist agent. Try it now at https://evo.ninja!
25-
26-
📈 To challenge evo.ninja, AutoGPT, and others, submit your benchmark run to the [Leaderboard](#-leaderboard), and maybe your agent will be up here next!
27-
2821
## 🧱 Building blocks
2922

3023
### 🏗️ Forge
@@ -46,13 +39,6 @@ This guide will walk you through the process of creating your own agent and usin
4639
 | 
4740
📘 [Learn More](https://github.com/Significant-Gravitas/AutoGPT/blob/master/benchmark) about the Benchmark
4841

49-
#### 🏆 [Leaderboard][leaderboard]
50-
[leaderboard]: https://leaderboard.agpt.co
51-
52-
Submit your benchmark run through the UI and claim your place on the AutoGPT Arena Leaderboard! The best scoring general agent earns the title of **[Current Best Agent]**, and will be adopted into our repo so people can easily run it through the [CLI].
53-
54-
[![Screenshot of the AutoGPT Arena leaderboard](https://github.com/Significant-Gravitas/AutoGPT/assets/12185583/60813392-9ddb-4cca-bb44-b477dbae225d)][leaderboard]
55-
5642
### 💻 UI
5743

5844
**Makes agents easy to use!** The `frontend` gives you a user-friendly interface to control and monitor your agents. It connects to agents through the [agent protocol](#-agent-protocol), ensuring compatibility with many agents from both inside and outside of our ecosystem.
@@ -78,7 +64,6 @@ Options:
7864

7965
Commands:
8066
agent Commands to create, start and stop agents
81-
arena Commands to enter the arena
8267
benchmark Commands to start the benchmark and list tests and categories
8368
setup Installs dependencies needed for your system.
8469
```

arena/480bot.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

arena/AGENT_GORDON.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

arena/AGENT_JARVIS.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

arena/AI.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

arena/AKBAgent.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)