Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import gradio as gd
|
2 |
|
3 |
def greeting(name):
|
4 |
-
|
5 |
|
6 |
demo = gd.ChatInterface(fn=greeting,
|
7 |
textbox=gd.Textbox(placeholder="Type the name to greet:", container=False, scale=7),
|
|
|
1 |
import gradio as gd
|
2 |
|
3 |
def greeting(name):
|
4 |
+
print(f"Hello + {name}!")
|
5 |
|
6 |
demo = gd.ChatInterface(fn=greeting,
|
7 |
textbox=gd.Textbox(placeholder="Type the name to greet:", container=False, scale=7),
|