Integrate baby-agi (#168)

Signed-off-by: Merwane Hamadi <merwanehamadi@gmail.com>
Co-authored-by: merwanehamadi <merwanehamadi@gmail.com>
This commit is contained in:
Silen Naihin
2023-07-21 19:15:42 +01:00
committed by GitHub
parent ee13f1ac87
commit 2b3abeff4e
9 changed files with 39 additions and 9 deletions

View File

@@ -81,6 +81,7 @@ jobs:
- "Auto-GPT"
- "mini-agi"
- "beebot"
- "BabyAGI"
steps:
- name: Checkout repository
@@ -132,6 +133,10 @@ jobs:
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
elif [ "$AGENT_NAME" == "BabyAGI" ]; then
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
elif [ "$AGENT_NAME" == "SuperAGI" ]; then
cp config_template.yaml config.yaml
sed -i 's/OPENAI_API_KEY:.*/OPENAI_API_KEY: "'"${{ secrets.OPENAI_API_KEY }}"'"/' config.yaml