thomas-yanxin commited on
Commit
7bfd749
1 Parent(s): c5cc305

modified: app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import os
2
 
3
  os.system('pip install git+https://github.com/facebookresearch/detectron2.git')
4
- os.system('apt-get install poppler-utils')
5
  import gradio as gr
6
  import nltk
7
  import sentence_transformers
@@ -170,7 +170,7 @@ if __name__ == "__main__":
170
  gr.Markdown("""<h1><center>LangChain-ChatLLM-Webui</center></h1>
171
  <center><font size=3>
172
  本项目基于LangChain和大型语言模型系列模型, 提供基于本地知识的自动问答应用. <br>
173
- 目前项目提供基于<a href='https://github.com/THUDM/ChatGLM-6B' target="_blank">ChatGLM-6B </a>的LLM和包括GanymedeNil/text2vec-large-chinese、nghuyong/ernie-3.0-base-zh、nghuyong/ernie-3.0-nano-zh在内的多个Embedding模型, 支持上传 txt、docx、md、pdf等文本格式文件. <br>
174
  后续将提供更加多样化的LLM、Embedding和参数选项供用户尝试, 欢迎关注<a href='https://github.com/thomas-yanxin/LangChain-ChatGLM-Webui' target="_blank">Github地址</a>.
175
  </center></font>
176
  """)
@@ -188,7 +188,7 @@ if __name__ == "__main__":
188
  value="text2vec-base")
189
 
190
  file = gr.File(label='请上传知识库文件',
191
- file_types=['.txt', '.md', '.docx', '.pdf'])
192
 
193
  use_web = gr.Radio(["True", "False"], label="Web Search",
194
  value="False"
 
1
  import os
2
 
3
  os.system('pip install git+https://github.com/facebookresearch/detectron2.git')
4
+
5
  import gradio as gr
6
  import nltk
7
  import sentence_transformers
 
170
  gr.Markdown("""<h1><center>LangChain-ChatLLM-Webui</center></h1>
171
  <center><font size=3>
172
  本项目基于LangChain和大型语言模型系列模型, 提供基于本地知识的自动问答应用. <br>
173
+ 目前项目提供基于<a href='https://github.com/THUDM/ChatGLM-6B' target="_blank">ChatGLM-6B </a>的LLM和包括GanymedeNil/text2vec-large-chinese、nghuyong/ernie-3.0-base-zh、nghuyong/ernie-3.0-nano-zh在内的多个Embedding模型, 支持上传 txt、docx、md等文本格式文件. <br>
174
  后续将提供更加多样化的LLM、Embedding和参数选项供用户尝试, 欢迎关注<a href='https://github.com/thomas-yanxin/LangChain-ChatGLM-Webui' target="_blank">Github地址</a>.
175
  </center></font>
176
  """)
 
188
  value="text2vec-base")
189
 
190
  file = gr.File(label='请上传知识库文件',
191
+ file_types=['.txt', '.md', '.docx'])
192
 
193
  use_web = gr.Radio(["True", "False"], label="Web Search",
194
  value="False"