From 196904872cc1ed381f349173ff3016dc38c5daa7 Mon Sep 17 00:00:00 2001 From: imClumsyPanda Date: Tue, 11 Apr 2023 22:15:17 +0800 Subject: [PATCH] Add support for folder path as input --- knowledge_based_chatglm.py | 1 - 1 file changed, 1 deletion(-) diff --git a/knowledge_based_chatglm.py b/knowledge_based_chatglm.py index d4051da..473515c 100644 --- a/knowledge_based_chatglm.py +++ b/knowledge_based_chatglm.py @@ -106,7 +106,6 @@ if __name__ == "__main__": vector_store = None while not vector_store: filepath = input("Input your local knowledge file path 请输入本地知识文件路径:") - print(filepath) vector_store = init_knowledge_vector_store(filepath) history = [] while True: