annikwag commited on
Commit
5620c68
·
verified ·
1 Parent(s): 6c2d0be

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -73,7 +73,7 @@ country_name_mapping, iso_code_to_sub_region = get_country_name_and_region_mappi
73
  unique_country_names = sorted(country_name_mapping.keys()) # List of country names
74
 
75
  # Layout filters in columns
76
- col1, col2, col3 = st.columns([1, 1, 4])
77
 
78
  # Region filter
79
  with col1:
@@ -141,7 +141,7 @@ def filter_results(results, country_filter, region_filter, end_year_range):
141
 
142
  if button:
143
  # 1) Use a bigger limit so we get more than 10 results
144
- results = hybrid_search(client, var, collection_name, limit=300) # e.g., 100 or 200
145
 
146
  # results is a tuple: (semantic_results, lexical_results)
147
  semantic_all = results[0]
 
73
  unique_country_names = sorted(country_name_mapping.keys()) # List of country names
74
 
75
  # Layout filters in columns
76
+ col1, col2, col3, col4 = st.columns([1, 1, 1, 4])
77
 
78
  # Region filter
79
  with col1:
 
141
 
142
  if button:
143
  # 1) Use a bigger limit so we get more than 10 results
144
+ results = hybrid_search(client, var, collection_name, limit=3000) # e.g., 100 or 200
145
 
146
  # results is a tuple: (semantic_results, lexical_results)
147
  semantic_all = results[0]