mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-08-07 03:14:42 +00:00
chores: version + rm useless file
This commit is contained in:
parent
aaccebcd03
commit
8c7a8f56fd
@ -14,7 +14,7 @@ project = "DB-GPT"
|
|||||||
copyright = "2023, csunny"
|
copyright = "2023, csunny"
|
||||||
author = "csunny"
|
author = "csunny"
|
||||||
|
|
||||||
version = "👏👏 0.3.0"
|
version = "👏👏 0.3.2"
|
||||||
html_title = project + " " + version
|
html_title = project + " " + version
|
||||||
|
|
||||||
# -- General configuration ---------------------------------------------------
|
# -- General configuration ---------------------------------------------------
|
||||||
|
45
echarts.min.js
vendored
45
echarts.min.js
vendored
File diff suppressed because one or more lines are too long
25
run.sh
25
run.sh
@ -1,25 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
function find_python_command() {
|
|
||||||
if command -v python &> /dev/null
|
|
||||||
then
|
|
||||||
echo "python"
|
|
||||||
elif command -v python3 &> /dev/null
|
|
||||||
then
|
|
||||||
echo "python3"
|
|
||||||
else
|
|
||||||
echo "Python not found. Please install python."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
PYTHONCMD=$(find_python_command)
|
|
||||||
|
|
||||||
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
|
|
2
setup.py
2
setup.py
@ -19,7 +19,7 @@ def parse_requirements(file_name: str) -> List[str]:
|
|||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="db-gpt",
|
name="db-gpt",
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
version="0.3.1",
|
version="0.3.2",
|
||||||
author="csunny",
|
author="csunny",
|
||||||
author_email="cfqcsunny@gmail.com",
|
author_email="cfqcsunny@gmail.com",
|
||||||
description="DB-GPT is an experimental open-source project that uses localized GPT large models to interact with your data and environment."
|
description="DB-GPT is an experimental open-source project that uses localized GPT large models to interact with your data and environment."
|
||||||
|
Loading…
Reference in New Issue
Block a user