Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Inana3205
/
Space_B
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Space_B
/
app.py
Inana3205
Create app.py
0585ec6
verified
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
197 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
iface = gr.Interface(
fn=greet,
inputs=
"text"
,
outputs=
"text"
)
if
__name__ ==
"__main__"
:
iface.launch()