Spaces:
Running
Running
Update app.py
Browse files
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 (
|
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 |
|