gpt-agents / run.sh
alex-mindspace's picture
(hopefully) working swarm demo
b3509ba
raw
history blame
232 Bytes
#!/bin/bash
python scripts/check_requirements.py requirements.txt
if [ $? -eq 1 ]
then
echo Installing missing packages...
pip install -r requirements.txt
fi
python -m swarmai.__main__
read -p "Press any key to continue..."