Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Renecto
/
test
like
0
Sleeping
App
Files
Files
Community
32b6c34
test
/
app.py
Renecto
Update app.py
32b6c34
verified
3 months ago
raw
Copy download link
history
blame
Safe
210 Bytes
import
gradio
as
gr
import
os
import
importlib
import
re
import
ast
import
inspect
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()