AFischer1985 commited on
Commit
784679a
1 Parent(s): 44cb5e2

Update run.py

Browse files
Files changed (1) hide show
  1. run.py +2 -2
run.py CHANGED
@@ -2,7 +2,7 @@
2
  # Title: Gradio Interface to LLM-chatbot with RAG-funcionality and ChromaDB on premises
3
  # Author: Andreas Fischer
4
  # Date: October 15th, 2023
5
- # Last update: December 30th, 2023
6
  ##########################################################################################
7
 
8
 
@@ -136,5 +136,5 @@ def response(message, history):
136
  yield response
137
  yield response+"\n\n<br><details open><summary><strong>Sources</strong></summary><br><ul>"+ "".join(["<li>" + s + "</li>" for s in combination])+"</ul></details>"
138
 
139
- gr.ChatInterface(response, chatbot=gr.Chatbot(render_markdown=True),title="RAG-Interface to Mistral-7B-Instruct-v0.2-GGUF").queue().launch(share=True) #False, server_name="0.0.0.0", server_port=7864)
140
  print("Interface up and running!")
 
2
  # Title: Gradio Interface to LLM-chatbot with RAG-funcionality and ChromaDB on premises
3
  # Author: Andreas Fischer
4
  # Date: October 15th, 2023
5
+ # Last update: December 31th, 2023
6
  ##########################################################################################
7
 
8
 
 
136
  yield response
137
  yield response+"\n\n<br><details open><summary><strong>Sources</strong></summary><br><ul>"+ "".join(["<li>" + s + "</li>" for s in combination])+"</ul></details>"
138
 
139
+ gr.ChatInterface(response, chatbot=gr.Chatbot(render_markdown=True),title="German RAG-Interface to Mistral-7B-Instruct-v0.2-GGUF").queue().launch(share=True) #False, server_name="0.0.0.0", server_port=7864)
140
  print("Interface up and running!")