Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -2,6 +2,6 @@ import gradio as gr
|
|
| 2 |
def echo(messsage, history):
|
| 3 |
return message
|
| 4 |
|
| 5 |
-
chatbot = gr.ChatInterface(
|
| 6 |
|
| 7 |
chatbot.launch()
|
|
|
|
| 2 |
def echo(messsage, history):
|
| 3 |
return message
|
| 4 |
|
| 5 |
+
chatbot = gr.ChatInterface(echo) #chatbot UI - conversation history and user input
|
| 6 |
|
| 7 |
chatbot.launch()
|