File size: 309 Bytes
24e9ff4 |
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
|