Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,7 @@
|
|
|
|
|
|
1 |
def test(message, history):
|
2 |
print("history", history)
|
3 |
return message
|
4 |
|
5 |
-
chatbot = ChatInterface(test).launch()
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
def test(message, history):
|
4 |
print("history", history)
|
5 |
return message
|
6 |
|
7 |
+
chatbot = gr.ChatInterface(test).launch()
|