File size: 309 Bytes
			
			| c34e843 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/bin/bash
# === INSTALL DEPENDENCIES ===
echo "--------------------------"
echo "Installing requirements..."
echo "--------------------------"
pip install -r requirements.txt
# === RUN AGENT ===
echo --------------------------
echo Running initialization...
echo --------------------------
python repl.py
 | 
