Add agbenchmark serve to run command (#5222)

* Add agbenchmark serve to run command

* Update autogpts-ci.yml
This commit is contained in:
merwanehamadi
2023-09-15 09:31:00 -07:00
committed by GitHub
parent bbb526e6f8
commit 885f120aa4
2 changed files with 3 additions and 1 deletions

View File

@@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
agent-name: [ autogpt, forge ]
agent-name: [ forge ]
fail-fast: false
timeout-minutes: 20
steps:

View File

@@ -1,9 +1,11 @@
#!/bin/bash
kill $(lsof -t -i :8000)
kill $(lsof -t -i :8080)
poetry install
if [ ! -f .env ]; then
cp .env.example .env
echo "Please add your api keys to the .env file."
fi
poetry run python -m forge &
agbenchmark serve &