manu commited on
Commit
cb7bc7e
·
verified ·
1 Parent(s): 6e4c2c5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -1
app.py CHANGED
@@ -229,7 +229,6 @@ def search_synthetize(query: str, k: int = 5) -> List[int]:
229
  ai_response (str): Text answer to the query grounded in content from the PDF, with citations (page numbers).
230
  """
231
  top_k_indices = search(query, k)
232
-
233
  expanded = set(top_k_indices)
234
  for i in base:
235
  expanded.add(i - 1)
 
229
  ai_response (str): Text answer to the query grounded in content from the PDF, with citations (page numbers).
230
  """
231
  top_k_indices = search(query, k)
 
232
  expanded = set(top_k_indices)
233
  for i in base:
234
  expanded.add(i - 1)