Spaces:
Sleeping
Sleeping
ultima versao
Browse files- __pycache__/app.cpython-310.pyc +0 -0
- app.py +6 -3
__pycache__/app.cpython-310.pyc
CHANGED
Binary files a/__pycache__/app.cpython-310.pyc and b/__pycache__/app.cpython-310.pyc differ
|
|
app.py
CHANGED
@@ -32,10 +32,13 @@ def calcula(titulo, descricao):
|
|
32 |
|
33 |
return story_points
|
34 |
|
35 |
-
gr.Interface(fn=calcula,
|
36 |
inputs=[gr.Textbox(placeholder="Título", label="Título"),
|
37 |
gr.Textbox(lines=10, placeholder="Descrição", label="Descrição")],
|
38 |
outputs=[gr.Textbox(label="Story Points Estimado")],
|
39 |
-
title="Agile Task Story Point Estimator",
|
40 |
examples=[[titulo, descricao], [titulo1, descricao1]]
|
41 |
-
)
|
|
|
|
|
|
|
|
32 |
|
33 |
return story_points
|
34 |
|
35 |
+
demo = gr.Interface(fn=calcula,
|
36 |
inputs=[gr.Textbox(placeholder="Título", label="Título"),
|
37 |
gr.Textbox(lines=10, placeholder="Descrição", label="Descrição")],
|
38 |
outputs=[gr.Textbox(label="Story Points Estimado")],
|
39 |
+
title="Agile Task Story Point Estimator - TAWOS - Alloy",
|
40 |
examples=[[titulo, descricao], [titulo1, descricao1]]
|
41 |
+
)
|
42 |
+
|
43 |
+
|
44 |
+
demo.launch()
|