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, history):
|
| 4 |
-
return(f"Hello
|
| 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, history):
|
| 4 |
+
return(f"Hello {name}!")
|
| 5 |
|
| 6 |
demo = gd.ChatInterface(fn=greeting,
|
| 7 |
textbox=gd.Textbox(placeholder="Type the name to greet:", container=False, scale=7),
|