提交 a231f92d 作者: imClumsyPanda 提交者: wangxinkai

修复 webui.py 中 llm_history_len 和 vector_search_top_k 显示值与启动设置默认值不一致的问题

上级 ca49799f
...@@ -17,6 +17,7 @@ VECTOR_SEARCH_TOP_K = 6 ...@@ -17,6 +17,7 @@ VECTOR_SEARCH_TOP_K = 6
# LLM input history length # LLM input history length
LLM_HISTORY_LEN = 3 LLM_HISTORY_LEN = 3
<<<<<<< HEAD
def load_file(filepath): def load_file(filepath):
if filepath.lower().endswith(".pdf"): if filepath.lower().endswith(".pdf"):
...@@ -29,6 +30,8 @@ def load_file(filepath): ...@@ -29,6 +30,8 @@ def load_file(filepath):
docs = loader.load_and_split(text_splitter=textsplitter) docs = loader.load_and_split(text_splitter=textsplitter)
return docs return docs
=======
>>>>>>> cba44ca (修复 webui.py llm_history_len vector_search_top_k 显示值与启动设置默认值不一致的问题)
class LocalDocQA: class LocalDocQA:
llm: object = None llm: object = None
......
Subproject commit b23825b5841818578dd225b5420c4b026ff58aa3
chatglm-6b @ 4de8efeb
Subproject commit 4de8efebc837788ffbfc0a15663de8553da362a2
...@@ -15,7 +15,15 @@ LLM_HISTORY_LEN = 3 ...@@ -15,7 +15,15 @@ LLM_HISTORY_LEN = 3
<<<<<<< HEAD <<<<<<< HEAD
======= =======
<<<<<<< HEAD
>>>>>>> f87a5f5 (fix bug in webui.py) >>>>>>> f87a5f5 (fix bug in webui.py)
=======
# return top-k text chunk from vector store
VECTOR_SEARCH_TOP_K = 6
# LLM input history length
LLM_HISTORY_LEN = 3
>>>>>>> cba44ca (修复 webui.py llm_history_len vector_search_top_k 显示值与启动设置默认值不一致的问题)
def get_file_list(): def get_file_list():
if not os.path.exists("content"): if not os.path.exists("content"):
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论