hjianganthony commited on
Commit
35fe4a4
·
1 Parent(s): d0eadbd

Update src/utils.py

Browse files
Files changed (1) hide show
  1. src/utils.py +3 -1
src/utils.py CHANGED
@@ -280,4 +280,6 @@ def search_offers(search_input: str, offers: pd.DataFrame, category_dict: Dict,
280
  print(f'Found {len(entities)} entity object(s) in the search input.')
281
  search_results = offer_finder_by_entity(search_input, entities, offers, score, score_threshold)
282
  return search_results
283
-
 
 
 
280
  print(f'Found {len(entities)} entity object(s) in the search input.')
281
  search_results = offer_finder_by_entity(search_input, entities, offers, score, score_threshold)
282
  return search_results
283
+
284
+ if __name__ == "__main__":
285
+ search_offers()