Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
tayaee
/
space1
like
0
Runtime error
App
Files
Files
Community
main
space1
/
app.py
tayaee
Update app.py
5612d28
verified
7 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
205 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
, title=
"Demo title v2"
, description=
"Demo description v2"
)
demo.launch()