Hugging Face
Models
Datasets
Spaces
Community
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...
f0f4fcc
massa_qa
/
app.py
bruno16
Upload app.py
f0f4fcc
almost 2 years ago
raw
Copy download link
history
blame
150 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()