zlmqi commited on
Commit
729b352
1 Parent(s): 2ee4558

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -152,11 +152,11 @@ def create_bot(user_input):
152
 
153
  return output
154
 
155
- inputs = gr.components.Textbox(lines=7, label="Ask questions related to the course. For example, what is the assignment late policy, what is a data warehouse, etc.")
156
  outputs = gr.components.Textbox(label="Response")
157
 
158
  gr.Interface(fn=create_bot, inputs=inputs, outputs=outputs, title="Virtual TA",
159
- description="This is a virtual learning assistant designed for MIS 340 (Version 2.0, powered by GPT-4).\nNote: Chatbot can make mistakes. Consider checking important information."
160
  ).launch(share=True)
161
 
162
 
 
152
 
153
  return output
154
 
155
+ inputs = gr.components.Textbox(lines=7, label="Ask questions related to the course and its content. For example, what is the assignment late policy, what is a data warehouse, etc.")
156
  outputs = gr.components.Textbox(label="Response")
157
 
158
  gr.Interface(fn=create_bot, inputs=inputs, outputs=outputs, title="Virtual TA",
159
+ description="This is a virtual learning assistant designed for MIS 340 (Beta version 2.0, powered by GPT-4).\nNote: Chatbot can make mistakes. Consider checking important information."
160
  ).launch(share=True)
161
 
162