mirror of
https://github.com/RYDE-WORK/Langchain-Chatchat.git
synced 2026-01-21 14:23:33 +08:00
7 lines
249 B
Bash
7 lines
249 B
Bash
# controller
|
|
nohup python3 -m fastchat.serve.controller >../logs/controller.log 2>&1 &
|
|
while [ `grep -c "Uvicorn running on" ../logs/controller.log` -eq '0' ];do
|
|
sleep 1s;
|
|
echo "wait controller running"
|
|
done
|
|
echo "controller running" |