-
Notifications
You must be signed in to change notification settings - Fork 44.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:Significant-Gravitas/Auto-GPT
- Loading branch information
Showing
131 changed files
with
623 additions
and
356 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
name: Hackathon | ||
|
||
on: | ||
workflow_dispatch: | ||
branches: [hackathon] | ||
inputs: | ||
agents: | ||
description: "Agents to run (comma-separated)" | ||
required: false | ||
default: "ZEROAGPT_03" # Default agents if none are specified | ||
|
||
jobs: | ||
matrix-setup: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
matrix: ${{ steps.set-matrix.outputs.matrix }} | ||
env-name: ${{ steps.set-matrix.outputs.env-name }} | ||
steps: | ||
- id: set-matrix | ||
run: | | ||
if [ "${{ github.event_name }}" == "schedule" ]; then | ||
echo "::set-output name=env-name::production" | ||
echo "::set-output name=matrix::[ 'ZEROAGPT_03', 'evo-ninja', 'gpt-engineer']" | ||
elif [ "${{ github.event_name }}" == "workflow_dispatch" ]; then | ||
IFS=',' read -ra matrix_array <<< "${{ github.event.inputs.agents }}" | ||
matrix_string="[ \"$(echo "${matrix_array[@]}" | sed 's/ /", "/g')\" ]" | ||
echo "::set-output name=env-name::production" | ||
echo "::set-output name=matrix::$matrix_string" | ||
else | ||
echo "::set-output name=env-name::testing" | ||
echo "::set-output name=matrix::[ 'mini-agi' ]" | ||
fi | ||
tests: | ||
environment: | ||
name: "${{ needs.matrix-setup.outputs.env-name }}" | ||
needs: matrix-setup | ||
env: | ||
min-python-version: "3.10" | ||
name: "${{ matrix.agent-name }}" | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 50 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
agent-name: ${{fromJson(needs.matrix-setup.outputs.matrix)}} | ||
steps: | ||
- name: Print Environment Name | ||
run: | | ||
echo "Matrix Setup Environment Name: ${{ needs.matrix-setup.outputs.env-name }}" | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
submodules: true | ||
|
||
- name: Set up Python ${{ env.min-python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ env.min-python-version }} | ||
|
||
- id: get_date | ||
name: Get date | ||
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT | ||
|
||
- name: Install Poetry | ||
run: | | ||
curl -sSL https://install.python-poetry.org | python - | ||
- name: Run benchmark | ||
run: | | ||
link=$(jq -r '.["github_repo_url"]' arena/$AGENT_NAME.json) | ||
branch=$(jq -r '.["branch_to_benchmark"]' arena/$AGENT_NAME.json) | ||
git clone "$link" -b "$branch" "$AGENT_NAME" | ||
cd $AGENT_NAME | ||
./run agent start $AGENT_NAME | ||
cd benchmark | ||
poetry install | ||
poetry run agbenchmark | ||
env: | ||
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | ||
AGENT_NAME: ${{ matrix.agent-name }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -172,3 +172,4 @@ pri* | |
# ignore | ||
ig* | ||
.github_access_token | ||
arena/TestAgent.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"github_repo_url": "https://github.com/480/AutoGPT", | ||
"timestamp": "2023-10-22T06:49:52.536177", | ||
"commit_hash_to_benchmark": "16e266c65fb4620a1b1397532c503fa426ec191d", | ||
"branch_to_benchmark": "master" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"github_repo_url": "https://github.com/alphaciso/AutoGPT", | ||
"timestamp": "2023-10-21T08:26:41.961187", | ||
"commit_hash_to_benchmark": "415b4ceed1417d0b21d87d7d4ea0cd38943e264f", | ||
"branch_to_benchmark": "master" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1 @@ | ||
{ | ||
"github_repo_url": "https://github.com/pjw1/AntlerAI", | ||
"timestamp": "2023-09-26T12:59:42.913784", | ||
"commit_hash_to_benchmark": "cf630e4f2cee04fd935612f95308322cd9eb1df7", | ||
"branch_to_benchmark": "master" | ||
} | ||
{"github_repo_url": "https://github.com/pjw1/AntlerAI", "timestamp": "2023-10-07T11:46:39Z", "commit_hash_to_benchmark": "f81e086e5647370854ec639c531c900775a99207", "branch_to_benchmark": "master"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1 @@ | ||
{ | ||
"github_repo_url": "https://github.com/somnistudio/SomniGPT", | ||
"timestamp": "2023-10-05T03:33:53.858386", | ||
"commit_hash_to_benchmark": "a55ed27679f608003372feb9eb61f0104ca87858", | ||
"branch_to_benchmark": "master" | ||
} | ||
{"github_repo_url": "https://github.com/somnistudio/SomniGPT", "timestamp": "2023-10-06T16:40:14Z", "commit_hash_to_benchmark": "47eb5124fa97187d7f3fa4036e422cd771cf0ae7", "branch_to_benchmark": "master"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"github_repo_url": "https://github.com/RedTachyon/AutoGPT", | ||
"timestamp": "2023-10-21T22:31:30.871023", | ||
"commit_hash_to_benchmark": "eda21d51921899756bf866cf5c4d0f2dcd3e2e23", | ||
"branch_to_benchmark": "master" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1 @@ | ||
{ | ||
"github_repo_url": "https://github.com/SarahGrevy/AutoGPT", | ||
"timestamp": "2023-10-18T17:44:04.993104", | ||
"commit_hash_to_benchmark": "e9b64adae9fce180a392c726457e150177e746fb", | ||
"branch_to_benchmark": "master" | ||
} | ||
{"github_repo_url": "https://github.com/SarahGrevy/AutoGPT", "timestamp": "2023-10-20T17:21:22Z", "commit_hash_to_benchmark": "32300906c9aafea8c550fa2f9edcc113fbfc512c", "branch_to_benchmark": "master"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"github_repo_url": "https://github.com/JasonDRZ/AutoGPT", | ||
"timestamp": "2023-10-26T13:27:58.805270", | ||
"commit_hash_to_benchmark": "ab2a61833584c42ededa805cbac50718c72aa5ae", | ||
"branch_to_benchmark": "master" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"github_repo_url": "https://github.com/LuisLechugaRuiz/AwareAgent", | ||
"timestamp": "2023-10-17T14:10:03.198917", | ||
"commit_hash_to_benchmark": "1eadc64dc0a693c7c9de77ddaef857f3a36f7950", | ||
"timestamp": "2023-10-26T10:10:01.481205", | ||
"commit_hash_to_benchmark": "c180063dde49af02ed95ec4c019611da0a5540d7", | ||
"branch_to_benchmark": "master" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1 @@ | ||
{ | ||
"github_repo_url": "https://github.com/jafar-albadarneh/Bravo06GPT", | ||
"timestamp": "2023-10-04T19:59:01.836786", | ||
"commit_hash_to_benchmark": "7f89b8aae8748bc88b29ca94c3604ba540bbef94", | ||
"branch_to_benchmark": "master" | ||
} | ||
{"github_repo_url": "https://github.com/jafar-albadarneh/Bravo06GPT", "timestamp": "2023-10-04T23:01:27Z", "commit_hash_to_benchmark": "f8c177b4b0e4ca45a3a104011b866c0415c648f1", "branch_to_benchmark": "master"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1 @@ | ||
{ | ||
"github_repo_url": "https://github.com/dabeer021/Brillante-AI", | ||
"timestamp": "2023-10-01T18:16:08.478048", | ||
"commit_hash_to_benchmark": "f864eb39dfe5e4289577ebabcb4fd067c879196e", | ||
"branch_to_benchmark": "master" | ||
} | ||
{"github_repo_url": "https://github.com/dabeer021/Brillante-AI", "timestamp": "2023-10-02T19:05:04Z", "commit_hash_to_benchmark": "163ab75379e1ee7792f50d4d70a1f482ca9cb6a1", "branch_to_benchmark": "master"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"github_repo_url": "https://github.com/ccsnow127/AutoGPT", | ||
"timestamp": "2023-10-21T13:57:15.131761", | ||
"commit_hash_to_benchmark": "e9b64adae9fce180a392c726457e150177e746fb", | ||
"branch_to_benchmark": "master" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1 @@ | ||
{ | ||
"github_repo_url": "https://github.com/Ahmad-Alaziz/ChadGPT", | ||
"timestamp": "2023-09-30T21:55:19.017916", | ||
"commit_hash_to_benchmark": "a0fba5d1f13d35a1c4a8b7718550677bf62b5101", | ||
"branch_to_benchmark": "master" | ||
} | ||
{"github_repo_url": "https://github.com/Ahmad-Alaziz/ChadGPT", "timestamp": "2023-10-26T09:39:35Z", "commit_hash_to_benchmark": "84dd029c011379791a6fec8b148b2982a2ef159e", "branch_to_benchmark": "master"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1 @@ | ||
{ | ||
"github_repo_url": "https://github.com/simonfunk/Auto-GPT", | ||
"timestamp": "2023-10-07T23:05:11.898903", | ||
"commit_hash_to_benchmark": "b2d53d8d18c754a5b877ffeb9f42d3387c3324fd", | ||
"branch_to_benchmark": "master" | ||
} | ||
{"github_repo_url": "https://github.com/simonfunk/Auto-GPT", "timestamp": "2023-10-08T02:10:18Z", "commit_hash_to_benchmark": "e99e9b6181f091a9625ef9b922dac15dd5f0a885", "branch_to_benchmark": "master"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"github_repo_url": "https://github.com/wic0144/AutoGPT", | ||
"timestamp": "2023-10-26T09:05:21.013962", | ||
"commit_hash_to_benchmark": "89d333f3bb422495f21e04bdd2bba3cb8c1a34ae", | ||
"branch_to_benchmark": "master" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"github_repo_url": "https://github.com/MohamedBasueny/AutoGPT-Drench", | ||
"timestamp": "2023-10-27T01:28:13.869318", | ||
"commit_hash_to_benchmark": "21b809794a90cf6f9a6aa41f179f420045becadc", | ||
"branch_to_benchmark": "master" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1 @@ | ||
{ | ||
"github_repo_url": "https://github.com/Significant-Gravitas/AutoGPT", | ||
"timestamp": "2023-10-03T11:59:32.967011", | ||
"commit_hash_to_benchmark": "d8d7fc4858a8d13407f6d7da360c6b5d398f2175", | ||
"branch_to_benchmark": "master" | ||
} | ||
{"github_repo_url": "https://github.com/Significant-Gravitas/AutoGPT", "timestamp": "2023-10-26T09:15:50Z", "commit_hash_to_benchmark": "6c9152a95c8994898c47c85ea90ba58e0cc02c28", "branch_to_benchmark": "master"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"github_repo_url": "https://github.com/fbk111/FcsummerGPT", | ||
"timestamp": "2023-10-25T09:58:39.801277", | ||
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f", | ||
"branch_to_benchmark": "master" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"github_repo_url": "https://github.com/mariepop13/AutoGPT", | ||
"timestamp": "2023-10-25T18:38:32.012583", | ||
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f", | ||
"branch_to_benchmark": "master" | ||
} |
Oops, something went wrong.