eliasangels commited on
Commit
f395c2a
·
verified ·
1 Parent(s): c6011ad

interface bug fix

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -64,7 +64,7 @@ def respond(message, history):
64
  response += token
65
  yield response
66
 
67
- chatbot = gr.ChatInterface(response, title = "Student Formula Bot 🔬",
68
  description = "Welcome to the core component of our project, The Student Formula: the RAG chatbot! With the ability to act as a finance tutor, accountability buddy, and goal-setting partner all in one, it's designed to best suit your needs on the way to productivity and success.")
69
 
70
  chatbot.launch()
 
64
  response += token
65
  yield response
66
 
67
+ chatbot = gr.ChatInterface(respond, title = "Student Formula Bot 🔬",
68
  description = "Welcome to the core component of our project, The Student Formula: the RAG chatbot! With the ability to act as a finance tutor, accountability buddy, and goal-setting partner all in one, it's designed to best suit your needs on the way to productivity and success.")
69
 
70
  chatbot.launch()