Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
-
def respond(message
|
| 4 |
return f"You say {message} \n I say Hello!!"
|
| 5 |
|
| 6 |
gr.ChatInterface(fn=respond).launch()
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
+
def respond(message, history):
|
| 4 |
return f"You say {message} \n I say Hello!!"
|
| 5 |
|
| 6 |
gr.ChatInterface(fn=respond).launch()
|