Thiloid commited on
Commit
c8128f9
·
verified ·
1 Parent(s): 1877151

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -37,7 +37,11 @@ def ask_writer(question, model="palmyra-x-004"):
37
 
38
  return bot_response
39
 
40
-
 
 
 
 
41
 
42
  print("Interface up and running!")
43
 
 
37
 
38
  return bot_response
39
 
40
+ gr.ChatInterface(
41
+ ask_writer,
42
+ chatbot=gr.Chatbot(value=[[None, "Herzlich willkommen! Ich bin Machatter, dein perönlicher Beratungschatbot für alle Fragen rund um die Universität Mannheim."]], render_markdown=True),
43
+ title="MachatterM1"
44
+ ).queue().launch(share=True)
45
 
46
  print("Interface up and running!")
47