mtyrrell commited on
Commit
ff23eb0
·
1 Parent(s): bbb6e34

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -206,14 +206,14 @@ retriever = EmbeddingRetriever(
206
 
207
  with st.sidebar:
208
  # Dropdown selectbox
209
- country = st.sidebar.selectbox('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.selectbox('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',
 
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',