Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -82,4 +82,8 @@ def respond(message, history):
|
|
| 82 |
yield response # yield the response:
|
| 83 |
|
| 84 |
chatbot = gr.ChatInterface(respond, examples = ["Learn About Stocks", "Help me Budget"], title = "ChaChingas", description = "This is a financial literacy chatbot")
|
| 85 |
-
chatbot.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 82 |
yield response # yield the response:
|
| 83 |
|
| 84 |
chatbot = gr.ChatInterface(respond, examples = ["Learn About Stocks", "Help me Budget"], title = "ChaChingas", description = "This is a financial literacy chatbot")
|
| 85 |
+
chatbot.launch()
|
| 86 |
+
|
| 87 |
+
#build on your original chatbot from the previous lesson
|
| 88 |
+
#a basic chatbot from the previous lesson is below -- edit it to incorporate the changes described above
|
| 89 |
+
|