Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rishav09
/
minimal
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
minimal
/
app.py
rishav09
Added some values.
d290740
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
210 Bytes
"""Author:Rishav Sapahia."""
import
gradio
as
gr
def
greet
(
name
):
"""Initialize intro."""
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
'text'
, outputs=
'text'
)
iface.launch()