Spaces:
Sleeping
Sleeping
Added hello world
Browse files
app.py
CHANGED
|
@@ -3,5 +3,6 @@ import gradio as gr
|
|
| 3 |
def echo(message, history):
|
| 4 |
return message
|
| 5 |
|
| 6 |
-
|
|
|
|
| 7 |
chatBot.launch()
|
|
|
|
| 3 |
def echo(message, history):
|
| 4 |
return message
|
| 5 |
|
| 6 |
+
print ("Hello, world!")
|
| 7 |
+
chatBot = gr.ChatInterface(echo, type = "messages")
|
| 8 |
chatBot.launch()
|