Spaces:
Sleeping
Sleeping
Update type to message
Browse files
app.py
CHANGED
|
@@ -3,6 +3,6 @@ import gradio as gr
|
|
| 3 |
def echo(message, history):
|
| 4 |
return message
|
| 5 |
|
| 6 |
-
chatbot = gr.ChatInterface(echo)
|
| 7 |
|
| 8 |
chatbot.launch()
|
|
|
|
| 3 |
def echo(message, history):
|
| 4 |
return message
|
| 5 |
|
| 6 |
+
chatbot = gr.ChatInterface(echo, type = "message")
|
| 7 |
|
| 8 |
chatbot.launch()
|