Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
ssdfsdfa
/
test
like
0
Running
App
Files
Files
Community
main
test
/
app.py
ssdfsdfa
Update app.py
3b1978e
11 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
157 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"abc "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch(share=
True
)