Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
LLKIM
/
project
like
0
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
main
project
/
ap1234.py
rnlduatm
Update space
ecdaa25
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
155 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Helloasdfasdf "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()