fschwartzer commited on
Commit
ae59a9a
1 Parent(s): 03d5b19

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -139,6 +139,7 @@ def integrated_app(query, titulo, EC, PU):
139
 
140
  # Pass whether "conjunto" is part of the original query
141
  include_conjunto = "conjunto" in query.lower()
 
142
  df_refined = refinar_resultados(df_combined, include_word=include_conjunto)
143
 
144
 
 
139
 
140
  # Pass whether "conjunto" is part of the original query
141
  include_conjunto = "conjunto" in query.lower()
142
+ include_word = ["conjunto"] if include_conjunto else []
143
  df_refined = refinar_resultados(df_combined, include_word=include_conjunto)
144
 
145