Spaces:
Sleeping
Sleeping
Commit
·
2607f1d
1
Parent(s):
8b85024
Update app.py
Browse files
app.py
CHANGED
@@ -67,15 +67,16 @@ def main():
|
|
67 |
|
68 |
with model_2:
|
69 |
if submit_1:
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
|
|
79 |
|
80 |
st.write("Sumário.....................................................................: \n {} \n \n".format(outputs[1]))
|
81 |
|
@@ -87,16 +88,17 @@ def main():
|
|
87 |
submit = st.button('Gerar resposta!')
|
88 |
|
89 |
with model_2:
|
90 |
-
|
91 |
-
if
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
|
|
100 |
|
101 |
st.write("Resposta.....................................................................: \n {} \n \n".format(answer))
|
102 |
|
|
|
67 |
|
68 |
with model_2:
|
69 |
if submit_1:
|
70 |
+
with st.spinner('Wait for it...'):
|
71 |
+
if language == 'Português (pt)':
|
72 |
+
#outputs = portuguese_sum_pipeline(link)
|
73 |
+
st.write("Modelo ainda não implementado.")
|
74 |
+
|
75 |
+
elif language == 'Inglês (en)':
|
76 |
+
outputs = english_sum_pipeline(link)
|
77 |
+
|
78 |
+
else:
|
79 |
+
st.write("Erro na seleção de linguagem.")
|
80 |
|
81 |
st.write("Sumário.....................................................................: \n {} \n \n".format(outputs[1]))
|
82 |
|
|
|
88 |
submit = st.button('Gerar resposta!')
|
89 |
|
90 |
with model_2:
|
91 |
+
with st.spinner('Wait for it...'):
|
92 |
+
if submit_2:
|
93 |
+
if language == 'Português (pt)':
|
94 |
+
#answer = portuguese_qa_pipeline(link)
|
95 |
+
st.write("Modelo ainda não implementado.")
|
96 |
+
|
97 |
+
elif language == 'Inglês (en)':
|
98 |
+
answer = english_qa_pipeline(question, outputs[0])
|
99 |
+
|
100 |
+
else:
|
101 |
+
st.write("Erro na seleção de linguagem.")
|
102 |
|
103 |
st.write("Resposta.....................................................................: \n {} \n \n".format(answer))
|
104 |
|