Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Almahfouz
/
q1
like
0
Sleeping
App
Files
Files
Community
main
q1
/
app.py
Almahfouz
Create app.py
ae672d4
verified
3 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
143 Bytes
import
gradio
as
gr
def
greet
(
input
):
return
"Hello "
+
input
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()