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