Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -77,9 +77,8 @@ chatbot = gr.Chatbot(placeholder="<strong>Chatbot that answers questions on agil
|
|
| 77 |
# Gradio Chat Interface
|
| 78 |
demo = gr.ChatInterface(
|
| 79 |
fn=respond,
|
| 80 |
-
|
| 81 |
-
|
| 82 |
)
|
| 83 |
-
|
| 84 |
if __name__ == "__main__":
|
| 85 |
demo.launch()
|
|
|
|
| 77 |
# Gradio Chat Interface
|
| 78 |
demo = gr.ChatInterface(
|
| 79 |
fn=respond,
|
| 80 |
+
chatbot=chatbot,
|
| 81 |
+
type="messages"
|
| 82 |
)
|
|
|
|
| 83 |
if __name__ == "__main__":
|
| 84 |
demo.launch()
|