Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -33,7 +33,7 @@ title = st.text_area("Title ", "", height=100)
|
|
33 |
abstract = st.text_area("Abstract ", "", height=150)
|
34 |
|
35 |
if st.button("Классифицировать", key="manual"):
|
36 |
-
if len(
|
37 |
st.error("Please, provide paper's title")
|
38 |
else:
|
39 |
with st.spinner("Be patient, I'm doing my best"):
|
|
|
33 |
abstract = st.text_area("Abstract ", "", height=150)
|
34 |
|
35 |
if st.button("Классифицировать", key="manual"):
|
36 |
+
if len(title) == 0:
|
37 |
st.error("Please, provide paper's title")
|
38 |
else:
|
39 |
with st.spinner("Be patient, I'm doing my best"):
|