Update app.py
Browse files
app.py
CHANGED
@@ -206,14 +206,14 @@ retriever = EmbeddingRetriever(
|
|
206 |
|
207 |
with st.sidebar:
|
208 |
# Dropdown selectbox
|
209 |
-
country = st.sidebar.
|
210 |
st.markdown(
|
211 |
"""
|
212 |
* *For a comparative analysis of multiple countries, select **'All Countries'***
|
213 |
* *Then be sure to mention the country names of interest in your query*
|
214 |
"""
|
215 |
)
|
216 |
-
vulnerabilities_cat = st.sidebar.
|
217 |
# choice = st.sidebar.radio(label = 'Select the Document',
|
218 |
# help = 'You can upload the document \
|
219 |
# or else you can try a example document',
|
|
|
206 |
|
207 |
with st.sidebar:
|
208 |
# Dropdown selectbox
|
209 |
+
country = st.sidebar.multiselect('Select a country:', country_options)
|
210 |
st.markdown(
|
211 |
"""
|
212 |
* *For a comparative analysis of multiple countries, select **'All Countries'***
|
213 |
* *Then be sure to mention the country names of interest in your query*
|
214 |
"""
|
215 |
)
|
216 |
+
vulnerabilities_cat = st.sidebar.multiselect('Select a vulnerabilities category:', vulnerability_options)
|
217 |
# choice = st.sidebar.radio(label = 'Select the Document',
|
218 |
# help = 'You can upload the document \
|
219 |
# or else you can try a example document',
|