Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
schakkir
/
sushtest
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
sushtest
/
app.py
schakkir
imp
4a3fd21
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
222 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"ji!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
,
title=
"simple app"
, description=
"via gradio"
)
iface.launch()