1 Star 0 Fork 3

qiuweifan/Langchain-Chatchat

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
init_database.py 1.18 KB
一键复制 编辑 原始数据 按行查看 历史
from server.knowledge_base.migrate import create_tables, folder2db, recreate_all_vs, list_kbs_from_folder
from configs.model_config import NLTK_DATA_PATH
import nltk
nltk.data.path = [NLTK_DATA_PATH] + nltk.data.path
from startup import dump_server_info
if __name__ == "__main__":
import argparse
parser = argparse.ArgumentParser()
parser.formatter_class = argparse.RawTextHelpFormatter
parser.add_argument(
"--recreate-vs",
action="store_true",
help=('''
recreate all vector store.
use this option if you have copied document files to the content folder, but vector store has not been populated or DEFAUL_VS_TYPE/EMBEDDING_MODEL changed.
if your vector store is ready with the configs, just skip this option to fill info to database only.
'''
)
)
args = parser.parse_args()
dump_server_info()
create_tables()
print("database talbes created")
if args.recreate_vs:
print("recreating all vector stores")
recreate_all_vs()
else:
print("filling kb infos to database")
for kb in list_kbs_from_folder():
folder2db(kb, "fill_info_only")
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/qiuweifan/Langchain-Chatchat.git
git@gitee.com:qiuweifan/Langchain-Chatchat.git
qiuweifan
Langchain-Chatchat
Langchain-Chatchat
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385