Spaces:
Sleeping
Sleeping
jaj
Browse files
app.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
def echo(message, history):
|
| 3 |
return message
|
|
|
|
|
|
|
| 4 |
chatbot = gr.ChatInterface(echo, type="messages") #chatbot UI - convo history & user input
|
| 5 |
chatbot.launch()
|
| 6 |
-
print("hELLO World")
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
def echo(message, history):
|
| 3 |
return message
|
| 4 |
+
|
| 5 |
+
print("hELLO World")
|
| 6 |
chatbot = gr.ChatInterface(echo, type="messages") #chatbot UI - convo history & user input
|
| 7 |
chatbot.launch()
|
|
|