CoolFace
Apppublic

coding-alt/AutoGPT

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes
run.sh10 linesDownload Raw Back to root
1#!/bin/bash2python scripts/check_requirements.py requirements.txt3if [ $? -eq 1 ]4then5    echo Installing missing packages...6    pip install -r requirements.txt7fi8python -m autogpt $@9read -p "Press any key to continue..."10