Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
giseldo
/
story_point_estimator
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
bf94120
story_point_estimator
/
app.py
giseldo
primeira versao
bf94120
over 1 year ago
raw
Copy download link
history
blame
Safe
155 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Olá Mundo "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()