Spaces:
Running
Running
debug added in launch()
Browse files
app.py
CHANGED
|
@@ -27,4 +27,4 @@ chatbot = gr.ChatInterface(respond, title = "", description = "") #using gradio
|
|
| 27 |
# passing fxn into a fxn, passing echo for gradio to call each time the user sends a message
|
| 28 |
# Adding parentheses would call the function and pass its return value instead, I didn't include () because I want Gradio to call it later, not right now
|
| 29 |
|
| 30 |
-
chatbot.launch() #launch chatbot
|
|
|
|
| 27 |
# passing fxn into a fxn, passing echo for gradio to call each time the user sends a message
|
| 28 |
# Adding parentheses would call the function and pass its return value instead, I didn't include () because I want Gradio to call it later, not right now
|
| 29 |
|
| 30 |
+
chatbot.launch(debug = True) #launch chatbot
|