Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Silly98
/
practice
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
practice
/
app.py
Silly98
changes
474f436
verified
about 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
199 Bytes
import
gradio
as
gr
def
app
(
var:
str
):
result=
f'Hi i am very glad to meet you
{var}
'
return
result
interface = gr.Interface(fn=app,inputs=
'text'
,outputs=
'text'
)
interface.launch(share=
True
)