Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -71,9 +71,9 @@ if option == "Text":
|
|
71 |
full_text_input = st.text_area("Enter Full Text:")
|
72 |
affiliations_input = st.text_area("Enter Affiliations:")
|
73 |
keywords_input = st.text_area("Enter Keywords:")
|
74 |
-
options=["
|
75 |
|
76 |
-
selected_category = st.selectbox("Select WoS categories:", options, index=
|
77 |
if selected_category == "Other":
|
78 |
custom_category = st.text_input("Enter custom category:")
|
79 |
selected_category = custom_category if custom_category else "Other"
|
|
|
71 |
full_text_input = st.text_area("Enter Full Text:")
|
72 |
affiliations_input = st.text_area("Enter Affiliations:")
|
73 |
keywords_input = st.text_area("Enter Keywords:")
|
74 |
+
options=["Nursing", "Physics", "Maths", "Chemical", "Nuclear", "Engineering" ,"Other"]
|
75 |
|
76 |
+
selected_category = st.selectbox("Select WoS categories:", options, index= None)
|
77 |
if selected_category == "Other":
|
78 |
custom_category = st.text_input("Enter custom category:")
|
79 |
selected_category = custom_category if custom_category else "Other"
|