Spaces:
Sleeping
Sleeping
fix iterator
Browse files
app.py
CHANGED
@@ -154,9 +154,9 @@ def retriever(query: str, selected_retriever: str):
|
|
154 |
|
155 |
for idx, document in enumerate(topk_documents):
|
156 |
try:
|
157 |
-
|
158 |
-
title = document[:
|
159 |
-
doc_details = document[
|
160 |
with st.expander(f"Rank {ix+1} - {title}"):
|
161 |
st.markdown(f"{doc_details}")
|
162 |
except:
|
|
|
154 |
|
155 |
for idx, document in enumerate(topk_documents):
|
156 |
try:
|
157 |
+
a_idx = document.lower().index("abstract:")
|
158 |
+
title = document[:a_idx].replace('\n', ' ')
|
159 |
+
doc_details = document[a_idx:]
|
160 |
with st.expander(f"Rank {ix+1} - {title}"):
|
161 |
st.markdown(f"{doc_details}")
|
162 |
except:
|