Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Shadhil
/
demo-1
like
0
Runtime error
App
Files
Files
Community
main
demo-1
/
app.py
Shadhil
Modified app.py for checking purpose2
5518d7b
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
151 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()