Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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)
|