diff --git a/README.md b/README.md index 129814fae..8aa7ca882 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@

-[**简体中文**](README.zh.md)|[**Discord**](https://discord.gg/ea6BnZkY) +[**简体中文**](README.zh.md)|[**Discord**](https://discord.gg/xfNDzZ9t) ## What is DB-GPT? @@ -46,7 +46,7 @@ Currently, we have released multiple key features, which are listed below to dem - Support for unstructured data such as PDF, Markdown, CSV, and WebURL - Milti LLMs Support - - Supports multiple large language models, currently supporting Vicuna (7b, 13b), ChatGLM-6b (int4, int8), guanaco(7b,13b,33b) + - Supports multiple large language models, currently supporting Vicuna (7b, 13b), ChatGLM-6b (int4, int8), guanaco(7b,13b,33b), Gorilla(7b,13b) - TODO: codegen2, codet5p diff --git a/run.sh b/run.sh index 81d3ec22b..5fc1e3bde 100644 --- a/run.sh +++ b/run.sh @@ -15,11 +15,11 @@ function find_python_command() { PYTHONCMD=$(find_python_command) -nohup PYTHONCMD pilot/server/llmserver.py >> /root/server.log 2>&1 & +nohup $PYTHONCMD pilot/server/llmserver.py >> /root/server.log 2>&1 & while [ `grep -c "Uvicorn running on" /root/server.log` -eq '0' ];do sleep 1s; echo "wait server running" done echo "server running" -PYTHONCMD pilot/server/webserver.py +$PYTHONCMD pilot/server/webserver.py