Merge branch 'master' of github.com:Significant-Gravitas/Auto-GPT

This commit is contained in:
hunteraraujo
2023-10-30 16:29:29 -07:00
131 changed files with 623 additions and 356 deletions

View File

@@ -2,17 +2,17 @@ name: AutoGPT Python CI
on:
push:
branches: [ master, ci-test* ]
branches: [ master, development, ci-test* ]
paths:
- 'autogpts/autogpt/**'
- '!autogpts/autogpt/tests/vcr_cassettes'
pull_request:
branches: [ stable, master, release-* ]
branches: [ master, development, release-* ]
paths:
- 'autogpts/autogpt/**'
- '!autogpts/autogpt/tests/vcr_cassettes'
pull_request_target:
branches: [ master, release-*, ci-test* ]
branches: [ master, development, release-*, ci-test* ]
paths:
- 'autogpts/autogpt/**'
- '!autogpts/autogpt/tests/vcr_cassettes'

View File

@@ -5,7 +5,7 @@ on:
- cron: 20 4 * * 1,4
env:
BASE_BRANCH: master
BASE_BRANCH: development
IMAGE_NAME: auto-gpt
jobs:
@@ -38,10 +38,10 @@ jobs:
build_type: ${{ matrix.build-type }}
prod_branch: stable
dev_branch: master
prod_branch: master
dev_branch: development
repository: ${{ github.repository }}
base_branch: ${{ github.ref_name != 'master' && github.ref_name != 'stable' && 'master' || 'stable' }}
base_branch: ${{ github.ref_name != 'master' && github.ref_name != 'development' && 'development' || 'master' }}
current_ref: ${{ github.ref_name }}
commit_hash: ${{ github.sha }}

View File

@@ -2,12 +2,12 @@ name: AutoGPT Docker CI
on:
push:
branches: [ master ]
branches: [ master, development ]
paths:
- 'autogpts/autogpt/**'
- '!autogpts/autogpt/tests/vcr_cassettes'
pull_request:
branches: [ master, release-*, stable ]
branches: [ master, development, release-* ]
paths:
- 'autogpts/autogpt/**'
- '!autogpts/autogpt/tests/vcr_cassettes'
@@ -61,10 +61,10 @@ jobs:
build_type: ${{ matrix.build-type }}
prod_branch: stable
dev_branch: master
prod_branch: master
dev_branch: development
repository: ${{ github.repository }}
base_branch: ${{ github.ref_name != 'master' && github.ref_name != 'stable' && 'master' || 'stable' }}
base_branch: ${{ github.ref_name != 'master' && github.ref_name != 'development' && 'development' || 'master' }}
current_ref: ${{ github.ref_name }}
commit_hash: ${{ github.event.after }}

View File

@@ -68,10 +68,10 @@ jobs:
event_ref_type: ${{ github.event.ref}}
inputs_no_cache: ${{ inputs.no_cache }}
prod_branch: stable
dev_branch: master
prod_branch: master
dev_branch: development
repository: ${{ github.repository }}
base_branch: ${{ github.ref_name != 'master' && github.ref_name != 'stable' && 'master' || 'stable' }}
base_branch: ${{ github.ref_name != 'master' && github.ref_name != 'development' && 'development' || 'master' }}
ref_type: ${{ github.ref_type }}
current_ref: ${{ github.ref_name }}

View File

@@ -2,13 +2,12 @@ name: Valid AutoGPTs
on:
workflow_dispatch:
branches: [master]
schedule:
- cron: '0 8 * * *'
push:
branches: [master, ci-test*]
branches: [ master, development, ci-test* ]
pull_request:
branches: [stable, master, release-*]
branches: [ master, development, release-* ]
jobs:
run-tests:

View File

@@ -2,13 +2,13 @@ name: Benchmark CI
on:
push:
branches: [master, ci-test*]
branches: [ master, development, ci-test* ]
paths:
- 'benchmark/**'
- .github/workflows/benchmark-ci.yml
- '!benchmark/reports/**'
pull_request:
branches: [stable, master, release-*]
branches: [ master, development, release-* ]
paths:
- 'benchmark/**'
- '!benchmark/reports/**'

View File

@@ -4,6 +4,7 @@ on:
push:
branches:
- master
- development
- 'ci-test*' # This will match any branch that starts with "ci-test"
paths:
- 'frontend/**'

85
.github/workflows/hackathon.yml vendored Normal file
View File

@@ -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 }}

View File

@@ -3,7 +3,7 @@ name: "Pull Request auto-label"
on:
# So that PRs touching the same files as the push are updated
push:
branches: [ master, release-* ]
branches: [ master, development, release-* ]
paths-ignore:
- 'autogpts/autogpt/tests/vcr_cassettes'
- 'benchmark/reports/**'

1
.gitignore vendored
View File

@@ -172,3 +172,4 @@ pri*
# ignore
ig*
.github_access_token
arena/TestAgent.json

View File

@@ -13,7 +13,7 @@ authors:
repository-code: 'https://github.com/Significant-Gravitas/AutoGPT'
url: 'https://agpt.co'
abstract: >-
An experimental open-source attempt to make GPT-4 fully
A collection of tools and experimental open-source attempts to make GPT-4 fully
autonomous.
keywords:
- AI

6
arena/480bot.json Normal file
View File

@@ -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"
}

6
arena/AlphaCISO.json Normal file
View File

@@ -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"
}

View File

@@ -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"}

View File

@@ -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"}

6
arena/AutoGPT-ariel.json Normal file
View File

@@ -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"
}

View File

@@ -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"}

6
arena/AutoGenius.json Normal file
View File

@@ -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"
}

View File

@@ -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"
}
}

View File

@@ -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"}

View File

@@ -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"}

6
arena/CCAgent.json Normal file
View File

@@ -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"
}

View File

@@ -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"}

View File

@@ -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"}

6
arena/DE.json Normal file
View File

@@ -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"
}

6
arena/Drench.json Normal file
View File

@@ -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"
}

View File

@@ -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"}

6
arena/FcsummerGPT.json Normal file
View File

@@ -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"
}

View File

@@ -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"
}

6
arena/LegalAgent.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/gengrui1983/LegalGPT",
"timestamp": "2023-10-25T02:46:41.860987",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

View File

@@ -1,6 +1 @@
{
"github_repo_url": "https://github.com/linusaltacc/AutoGPT",
"timestamp": "2023-10-14T07:18:54.417105",
"commit_hash_to_benchmark": "93e3ec36ed6cd9e5e60585f016ad3bef4e1c52cb",
"branch_to_benchmark": "master"
}
{"github_repo_url": "https://github.com/linusaltacc/AutoGPT", "timestamp": "2023-10-23T09:20:51Z", "commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f", "branch_to_benchmark": "master"}

View File

@@ -1,6 +1 @@
{
"github_repo_url": "https://github.com/sampatkalyan/AutoGPTHackathon",
"timestamp": "2023-10-01T18:59:41.243243",
"commit_hash_to_benchmark": "a0fba5d1f13d35a1c4a8b7718550677bf62b5101",
"branch_to_benchmark": "master"
}
{"github_repo_url": "https://github.com/sampatkalyan/AutoGPTHackathon", "timestamp": "2023-10-02T08:16:27Z", "commit_hash_to_benchmark": "062d286c239dc863ede4ad475d7348698722f5fa", "branch_to_benchmark": "master"}

6
arena/MangoAI.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/stargatejy/MangoAI",
"timestamp": "2023-10-24T10:11:38.967772",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

6
arena/MangoAgent-3.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/stargatejy/MangoAI",
"timestamp": "2023-10-25T15:41:17.652038",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

6
arena/Mary.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/bigfatball/Auto-GPT.git",
"timestamp": "2023-10-22T23:40:22.765334",
"commit_hash_to_benchmark": "16e266c65fb4620a1b1397532c503fa426ec191d",
"branch_to_benchmark": "master"
}

6
arena/Mira.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/enricofranke/EnricoAssistant",
"timestamp": "2023-10-25T23:21:35.799138",
"commit_hash_to_benchmark": "89d333f3bb422495f21e04bdd2bba3cb8c1a34ae",
"branch_to_benchmark": "master"
}

6
arena/MoTS.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/ghd9201/AutoGPT.git",
"timestamp": "2023-10-25T09:04:02.534683",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

6
arena/MyAgent.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/AgentService/AutoGPT",
"timestamp": "2023-10-25T20:11:31.811596",
"commit_hash_to_benchmark": "89d333f3bb422495f21e04bdd2bba3cb8c1a34ae",
"branch_to_benchmark": "master"
}

View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/moizsajid/AutoGPT",
"timestamp": "2023-10-25T20:20:04.910747",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

6
arena/PAgentAI.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/plopez10/GPT",
"timestamp": "2023-10-26T03:25:27.221299",
"commit_hash_to_benchmark": "89d333f3bb422495f21e04bdd2bba3cb8c1a34ae",
"branch_to_benchmark": "master"
}

6
arena/Pelle.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/pilotniq/AutoGPT",
"timestamp": "2023-10-23T19:14:27.176891",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

View File

@@ -1,6 +1 @@
{
"github_repo_url": "https://github.com/erlendjones/AutoGPT",
"timestamp": "2023-09-22T20:32:38.770287",
"commit_hash_to_benchmark": "a0e383f4d9e7e0a60804bbf7e600e38a45530d96",
"branch_to_benchmark": "master"
}
{"github_repo_url": "https://github.com/erlendjones/AutoGPT", "timestamp": "2023-09-22T20:39:08Z", "commit_hash_to_benchmark": "58d5b0d4a2fcc1bc12ed667db9d62a427a89c1a4", "branch_to_benchmark": "master"}

6
arena/QuantumQuill.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/dleidisch/AutoAgent",
"timestamp": "2023-10-23T18:49:58.499309",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

View File

@@ -1,6 +1 @@
{
"github_repo_url": "https://github.com/Umar-Azam/AutoGPT-ResearchAgent",
"timestamp": "2023-10-20T06:08:12.933685",
"commit_hash_to_benchmark": "9219bfba0e028a557109b8e39c0fd91c1df243f8",
"branch_to_benchmark": "master"
}
{"github_repo_url": "https://github.com/Umar-Azam/AutoGPT-ResearchAgent", "timestamp": "2023-10-23T09:20:51Z", "commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f", "branch_to_benchmark": "master"}

6
arena/SmartAgent.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/AgentService/AutoGPT",
"timestamp": "2023-10-25T20:06:46.743984",
"commit_hash_to_benchmark": "89d333f3bb422495f21e04bdd2bba3cb8c1a34ae",
"branch_to_benchmark": "master"
}

View File

@@ -1,6 +1 @@
{
"github_repo_url": "https://github.com/shamantechnology/TheAgency",
"timestamp": "2023-09-30T05:18:13.652705",
"commit_hash_to_benchmark": "829e8d57e5dc55652583d10e59487147b5afeff3",
"branch_to_benchmark": "master"
}
{"github_repo_url": "https://github.com/shamantechnology/TheAgency", "timestamp": "2023-10-26T09:22:18Z", "commit_hash_to_benchmark": "3eef81f2579e3ab4822fb9155ee412c597fda9c2", "branch_to_benchmark": "master"}

6
arena/WRITER.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/ezirmusitua/AutoGPT",
"timestamp": "2023-10-27T09:43:35.725996",
"commit_hash_to_benchmark": "21b809794a90cf6f9a6aa41f179f420045becadc",
"branch_to_benchmark": "master"
}

View File

@@ -1,6 +1 @@
{
"github_repo_url": "https://github.com/Ashish-Soni08/SoniGPT",
"timestamp": "2023-10-05T19:55:43.417780",
"commit_hash_to_benchmark": "bcb24c1a5896a820cf054d13b90d23f3175f02fa",
"branch_to_benchmark": "master"
}
{"github_repo_url": "https://github.com/Ashish-Soni08/SoniGPT", "timestamp": "2023-10-08T18:39:38Z", "commit_hash_to_benchmark": "b52aba4ef545add8fb6c7f8009615cb38e24db80", "branch_to_benchmark": "master"}

6
arena/ZoeyGPT.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/carylaw/FatGPT",
"timestamp": "2023-10-25T10:03:47.295810",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

6
arena/Zoidberg.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/KapitanFernand/Zoidberg",
"timestamp": "2023-10-24T09:09:27.540179",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

6
arena/actor_tester.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/calmglow/mbtiagent",
"timestamp": "2023-10-25T13:15:04.296302",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

View File

@@ -1,6 +1 @@
{
"github_repo_url": "https://github.com/admariner/AutoGPT",
"timestamp": "2023-10-07T14:12:26.956967",
"commit_hash_to_benchmark": "b2d53d8d18c754a5b877ffeb9f42d3387c3324fd",
"branch_to_benchmark": "master"
}
{"github_repo_url": "https://github.com/admariner/AutoGPT", "timestamp": "2023-10-23T09:20:51Z", "commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f", "branch_to_benchmark": "master"}

6
arena/ag1.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/gensy421/AutoGensy",
"timestamp": "2023-10-26T06:31:27.588150",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

6
arena/agentgpt.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/UdaySagar-Git/AutoGPT.git",
"timestamp": "2023-10-24T05:24:58.972720",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

6
arena/ai_assistant.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/xhjxhj001/AutoGPT",
"timestamp": "2023-10-23T12:05:13.923218",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

6
arena/aixiaoxin.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/aixiaoxin123/AutoGPT",
"timestamp": "2023-10-27T05:44:49.265845",
"commit_hash_to_benchmark": "6c9152a95c8994898c47c85ea90ba58e0cc02c28",
"branch_to_benchmark": "master"
}

View File

@@ -0,0 +1 @@
{"github_repo_url": "https://github.com/ThisisHubert/AutoGPT-hackathon", "timestamp": "2023-10-23T09:20:51Z", "commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f", "branch_to_benchmark": "master"}

View File

@@ -1,6 +1 @@
{
"github_repo_url": "https://github.com/ThisisHubert/AutoGPT-hackathon",
"timestamp": "2023-10-09T03:15:02.101279",
"commit_hash_to_benchmark": "a0fba5d1f13d35a1c4a8b7718550677bf62b5101",
"branch_to_benchmark": "master"
}
{"github_repo_url": "https://github.com/ThisisHubert/AutoGPT-hackathon", "timestamp": "2023-10-23T09:20:51Z", "commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f", "branch_to_benchmark": "master"}

View File

@@ -0,0 +1 @@
{"github_repo_url": "https://github.com/ThisisHubert/AutoGPT-hackathon", "timestamp": "2023-10-23T09:20:51Z", "commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f", "branch_to_benchmark": "master"}

View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/warlockee/AutoGPT-wl",
"timestamp": "2023-10-27T00:46:05.266939",
"commit_hash_to_benchmark": "6f66376bb8a4116330fe867d9dff83f938f7aa14",
"branch_to_benchmark": "master"
}

6
arena/avengaGPT.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/sebabetz/AutoGPT",
"timestamp": "2023-10-24T05:25:26.059512",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

6
arena/beyond.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/sn0wdown/AutoGPT",
"timestamp": "2023-10-25T07:22:09.723393",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

6
arena/business.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/danielfebrero/AutoGPT",
"timestamp": "2023-10-21T16:12:05.424875",
"commit_hash_to_benchmark": "415b4ceed1417d0b21d87d7d4ea0cd38943e264f",
"branch_to_benchmark": "master"
}

1
arena/career-agent.json Normal file
View File

@@ -0,0 +1 @@
{"github_repo_url": "https://github.com/asifdotpy/CareerGPT", "timestamp": "2023-10-23T09:20:51Z", "commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f", "branch_to_benchmark": "master"}

6
arena/ccace.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/ccsnow127/AutoGPT",
"timestamp": "2023-10-23T08:28:38.119283",
"commit_hash_to_benchmark": "e9b64adae9fce180a392c726457e150177e746fb",
"branch_to_benchmark": "master"
}

6
arena/chengshu.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/skadai/AutoGPT",
"timestamp": "2023-10-26T06:54:04.511066",
"commit_hash_to_benchmark": "89d333f3bb422495f21e04bdd2bba3cb8c1a34ae",
"branch_to_benchmark": "master"
}

View File

@@ -1,6 +1 @@
{
"github_repo_url": "https://github.com/AJV009/AutoGPT",
"timestamp": "2023-10-04T15:24:26.675066",
"commit_hash_to_benchmark": "1bd85cbc09473c0252928fb849ae8373607d6065",
"branch_to_benchmark": "master"
}
{"github_repo_url": "https://github.com/AJV009/AutoGPT", "timestamp": "2023-10-26T05:03:09Z", "commit_hash_to_benchmark": "03a95a5333db52ac5b129306e47423b638d649b0", "branch_to_benchmark": "master"}

View File

@@ -1,6 +1 @@
{
"github_repo_url": "https://github.com/banderson12/AutoGPT",
"timestamp": "2023-10-19T20:13:23.530323",
"commit_hash_to_benchmark": "b4588f6425912316e1512391e4392ca30d61e144",
"branch_to_benchmark": "master"
}
{"github_repo_url": "https://github.com/banderson12/AutoGPT", "timestamp": "2023-10-21T04:13:13Z", "commit_hash_to_benchmark": "415b4ceed1417d0b21d87d7d4ea0cd38943e264f", "branch_to_benchmark": "master"}

6
arena/cssupdater.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/mplummeridge/AutoGPT",
"timestamp": "2023-10-24T01:25:47.059251",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

View File

@@ -1,6 +1 @@
{
"github_repo_url": "https://github.com/qwdqwqdwqd/autogpt",
"timestamp": "2023-10-14T01:52:41.931129",
"commit_hash_to_benchmark": "b5c6bc1c90e65e059bf77df38ec35edcdaea93c1",
"branch_to_benchmark": "master"
}
{"github_repo_url": "https://github.com/qwdqwqdwqd/autogpt", "timestamp": "2023-10-25T17:55:18Z", "commit_hash_to_benchmark": "c8d239ef6492d7fe30c099909e01a2eede678b70", "branch_to_benchmark": "master"}

6
arena/easn.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/qazwsxdshb/AutoGPT",
"timestamp": "2023-10-21T08:00:39.287093",
"commit_hash_to_benchmark": "415b4ceed1417d0b21d87d7d4ea0cd38943e264f",
"branch_to_benchmark": "master"
}

View File

@@ -1,6 +1,6 @@
{
"github_repo_url": "https://github.com/polywrap/evo.ninja",
"timestamp": "2023-10-06T23:28:08.231544",
"commit_hash_to_benchmark": "8440f065d144036b543d151c38b473506c7f6029",
"timestamp": "2023-10-26T09:05:21.013962",
"commit_hash_to_benchmark": "8832a1008607ab8a27de81fbea69bc73c3febb6f",
"branch_to_benchmark": "dev"
}

6
arena/first-agent.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/DG1202/AutoGPT.git",
"timestamp": "2023-10-22T15:08:00.869208",
"commit_hash_to_benchmark": "16e266c65fb4620a1b1397532c503fa426ec191d",
"branch_to_benchmark": "master"
}

View File

@@ -1,6 +1 @@
{
"github_repo_url": "https://github.com/bsenst/FritzGPT",
"timestamp": "2023-10-05T05:35:54.685802",
"commit_hash_to_benchmark": "a55ed27679f608003372feb9eb61f0104ca87858",
"branch_to_benchmark": "master"
}
{"github_repo_url": "https://github.com/bsenst/FritzGPT", "timestamp": "2023-10-07T11:54:36Z", "commit_hash_to_benchmark": "bb960ffb9fadc45fe4fb5277053caa831f196578", "branch_to_benchmark": "master"}

6
arena/gaby_agent.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://ggonza156: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@github.com/ggonza156/AutoGPT",
"timestamp": "2023-10-21T23:52:39.199690",
"commit_hash_to_benchmark": "eda21d51921899756bf866cf5c4d0f2dcd3e2e23",
"branch_to_benchmark": "master"
}

View File

@@ -1,6 +1 @@
{
"github_repo_url": "https://github.com/aorwall/AutoGPT",
"timestamp": "2023-09-29T16:32:44.648322",
"commit_hash_to_benchmark": "76c321d6b1a3c6ed938c90149a2954b7dade761a",
"branch_to_benchmark": "master"
}
{"github_repo_url": "https://github.com/aorwall/AutoGPT", "timestamp": "2023-10-26T07:02:18Z", "commit_hash_to_benchmark": "580b4467851b879ef6ce369128e8c7a0399f8877", "branch_to_benchmark": "master"}

View File

@@ -1,6 +1 @@
{
"github_repo_url": "https://github.com/ATheorell/AutoGPTArenaHack",
"timestamp": "2023-09-28T12:18:17.088849",
"commit_hash_to_benchmark": "4f15b1c5825b3f044c901995e3399d4eacf7ec66",
"branch_to_benchmark": "master"
}
{"github_repo_url": "https://github.com/ATheorell/AutoGPTArenaHack", "timestamp": "2023-10-26T09:33:03Z", "commit_hash_to_benchmark": "1e4f2dc004b92b9f236543674f94fb9f0af9bb2e", "branch_to_benchmark": "master"}

View File

@@ -1,6 +1 @@
{
"github_repo_url": "https://github.com/ATheorell/AutoGPTArenaHack",
"timestamp": "2023-09-30T06:48:42.175596",
"commit_hash_to_benchmark": "4f15b1c5825b3f044c901995e3399d4eacf7ec66",
"branch_to_benchmark": "master"
}
{"github_repo_url": "https://github.com/ATheorell/AutoGPTArenaHack", "timestamp": "2023-10-26T09:33:03Z", "commit_hash_to_benchmark": "1e4f2dc004b92b9f236543674f94fb9f0af9bb2e", "branch_to_benchmark": "master"}

6
arena/hodri.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/bilisim1995/AutoGPT",
"timestamp": "2023-10-27T10:51:20.447157",
"commit_hash_to_benchmark": "f4985395a94da84b79252bd4d88e040472e1bf6f",
"branch_to_benchmark": "master"
}

6
arena/illynet.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/illyx1/AutoGPT.git",
"timestamp": "2023-10-26T06:51:32.589776",
"commit_hash_to_benchmark": "89d333f3bb422495f21e04bdd2bba3cb8c1a34ae",
"branch_to_benchmark": "master"
}

6
arena/illynetV2.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/illyx1/AutoGPT.git",
"timestamp": "2023-10-26T13:14:45.725000",
"commit_hash_to_benchmark": "19175badeefc1325f3fa1a7797ddcfb913c23076",
"branch_to_benchmark": "master"
}

6
arena/illyx1.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/illyx1/AutoGPT.git",
"timestamp": "2023-10-26T12:36:26.810636",
"commit_hash_to_benchmark": "19175badeefc1325f3fa1a7797ddcfb913c23076",
"branch_to_benchmark": "master"
}

1
arena/justwondering.json Normal file
View File

@@ -0,0 +1 @@
{"github_repo_url": "https://github.com/tbxy09/JustWondering", "timestamp": "2023-10-26T09:48:15Z", "commit_hash_to_benchmark": "b52fea9ba7510adb8c1e7e5cfb83f5fa181d73cf", "branch_to_benchmark": "master"}

6
arena/lawk.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/xiaolongtuan-yuan/AutoGPT",
"timestamp": "2023-10-26T06:18:01.049166",
"commit_hash_to_benchmark": "89d333f3bb422495f21e04bdd2bba3cb8c1a34ae",
"branch_to_benchmark": "master"
}

6
arena/linggong.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/linggong2023/AutoGPT",
"timestamp": "2023-10-24T12:40:35.679665",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

6
arena/liuzh.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/Hanzhang-lang/AutoGPT_zh",
"timestamp": "2023-10-24T10:25:02.790189",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

6
arena/ltzAgent.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/ltzmaxwell/AutoGPT",
"timestamp": "2023-10-25T08:58:41.646491",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

View File

@@ -1,6 +1,6 @@
{
"github_repo_url": "https://github.com/Nilllas/AutoGPT",
"timestamp": "2023-10-20T11:27:15.343842",
"github_repo_url": "https://github.com/chenxuya/AutoGPT",
"timestamp": "2023-10-23T02:23:48.775561",
"commit_hash_to_benchmark": "2187f66149ffa4bb99f9ca6a11b592fe4d683791",
"branch_to_benchmark": "master"
}

6
arena/miniAgent.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/bigzz/AutoGPT",
"timestamp": "2023-10-23T02:41:41.828607",
"commit_hash_to_benchmark": "1a30d00194b46f8b923bab191404ce9123e34bdf",
"branch_to_benchmark": "master"
}

View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/miandai/AutoGPT",
"timestamp": "2023-10-25T11:58:34.781500",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

View File

@@ -1,6 +1 @@
{
"github_repo_url": "https://github.com/mljar/mljar-agent",
"timestamp": "2023-10-03T11:28:17.260748",
"commit_hash_to_benchmark": "d8d7fc4858a8d13407f6d7da360c6b5d398f2175",
"branch_to_benchmark": "master"
}
{"github_repo_url": "https://github.com/mljar/mljar-agent", "timestamp": "2023-10-25T14:04:51Z", "commit_hash_to_benchmark": "2fbc4d6ef48f0201c046b649e7bc74b9d11ae4e5", "branch_to_benchmark": "master"}

View File

@@ -1,6 +1 @@
{
"github_repo_url": "https://github.com/UICJohn/AutoGPT",
"timestamp": "2023-10-19T09:39:59.577220",
"commit_hash_to_benchmark": "1a30d00194b46f8b923bab191404ce9123e34bdf",
"branch_to_benchmark": "master"
}
{"github_repo_url": "https://github.com/UICJohn/AutoGPT", "timestamp": "2023-10-19T09:52:19Z", "commit_hash_to_benchmark": "3aa92c082ac6912b45583b39d59a13cfda665322", "branch_to_benchmark": "master"}

6
arena/mygent.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/prashanthi-instalily/AutoGPT",
"timestamp": "2023-10-24T13:31:28.287257",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

View File

@@ -1,6 +1 @@
{
"github_repo_url": "https://github.com/volkov/AutoGPT",
"timestamp": "2023-09-28T06:02:12.173325",
"commit_hash_to_benchmark": "eb93a617c1ffd821bb4fa68ff31658a466b0ec1c",
"branch_to_benchmark": "master"
}
{"github_repo_url": "https://github.com/volkov/AutoGPT", "timestamp": "2023-10-23T05:24:11Z", "commit_hash_to_benchmark": "7d2532c1814d624725e7a1fce8831dc0def27fb8", "branch_to_benchmark": "master"}

View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/oneforce/AutoGPT",
"timestamp": "2023-10-24T09:51:05.658251",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

6
arena/ra.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/aramfaghfouri/AutoGPT",
"timestamp": "2023-10-23T18:03:39.069151",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

6
arena/ra1.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/aramfaghfouri/AutoGPT",
"timestamp": "2023-10-23T18:12:20.095032",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/aramfaghfouri/AutoGPT",
"timestamp": "2023-10-23T17:53:54.235178",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

6
arena/set.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/victorrica/AutoGPT",
"timestamp": "2023-10-24T05:12:51.971269",
"commit_hash_to_benchmark": "ab362f96c3255052350e8e8081b363c7b97ffd6f",
"branch_to_benchmark": "master"
}

6
arena/stefan.json Normal file
View File

@@ -0,0 +1,6 @@
{
"github_repo_url": "https://github.com/sutefu23/AutoGPT",
"timestamp": "2023-10-21T01:03:06.362579",
"commit_hash_to_benchmark": "03e56fece5008d119dd5ae97da57eb4db3d14a1d",
"branch_to_benchmark": "master"
}

Some files were not shown because too many files have changed in this diff Show More