fschwartzer commited on
Commit
e5b70df
1 Parent(s): 1efcf05

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -139,8 +139,9 @@ def integrated_app(query, titulo, EC, PU):
139
  return "Nenhum dado encontrado. Tente uma consulta diferente.", pd.DataFrame()
140
 
141
  # Pass whether "conjunto" is part of the original query
142
- include_conjunto = "conjunto" in query.lower()
143
- df_refined = refinar_resultados(df_combined, include_word=include_conjunto)
 
144
 
145
  df_similares = search_with_fallback(query, df_refined)
146
 
 
139
  return "Nenhum dado encontrado. Tente uma consulta diferente.", pd.DataFrame()
140
 
141
  # Pass whether "conjunto" is part of the original query
142
+ include_word = ["conjunto"] if include_conjunto else []
143
+ df_refined = refinar_resultados(df_combined, include_word=include_word)
144
+
145
 
146
  df_similares = search_with_fallback(query, df_refined)
147