Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
bruno16
/
massa_qa
like
2
Sleeping
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
7eb6bf3
massa_qa
/
app.py
bruno16
add app.py file 1st
7eb6bf3
over 1 year ago
raw
Copy download link
history
blame
Safe
150 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()