Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
DavidD003
/
PushTesting
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8723698
PushTesting
/
app.py
DavidD003
"Comment"
8723698
over 3 years ago
raw
Copy download link
history
blame
153 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"GREETINGS "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()