You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
242 B
10 lines
242 B
#!/bin/bash
|
|
echo "Container Started"
|
|
export PYTHONUNBUFFERED=1
|
|
|
|
cd /workspace/text-generation-webui
|
|
echo "starting api"
|
|
python3 server.py --listen --no-stream --extensions api &
|
|
cd /workspace
|
|
echo "starting worker"
|
|
python3 -u runpod_infer.py
|
|
|