Spaces:
Runtime error
Runtime error
Commit
·
ff88aac
1
Parent(s):
00f4121
Update app.py
Browse files
app.py
CHANGED
|
@@ -37,5 +37,5 @@ def predict(input, history=[]):
|
|
| 37 |
|
| 38 |
return response, history
|
| 39 |
|
| 40 |
-
gr.Interface(predict,"textbox","chatbot",theme ="grass", title = title, flagging_callback=hf_writer,description = description, article = article).launch(enable_queue=True) # customizes the input component
|
| 41 |
|
|
|
|
| 37 |
|
| 38 |
return response, history
|
| 39 |
|
| 40 |
+
gr.Interface(predict,input = "textbox", output = "chatbot",theme ="grass", title = title, flagging_callback=hf_writer,description = description, article = article).launch(enable_queue=True) # customizes the input component
|
| 41 |
|