Spaces:
Running
Running
debug
Browse files
app.py
CHANGED
@@ -155,15 +155,17 @@ def retriever(query: str, selected_retriever: str):
|
|
155 |
for idx, document in enumerate(topk_documents):
|
156 |
try:
|
157 |
a_idx = document.lower().index("abstract:")
|
158 |
-
print(f"a_idx is {a_idx}")
|
159 |
title = document[:a_idx].replace('\n', ' ')
|
160 |
-
print(f"title is {title}")
|
161 |
doc_details = document[a_idx:]
|
162 |
-
print(f"document is {document}")
|
163 |
-
with st.expander(f"Rank {ix+1} - {title}"):
|
164 |
-
st.markdown(f"{doc_details}")
|
165 |
except:
|
166 |
print(f"Document parsing error for title and other contents-\n{document}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
|
168 |
# retrieved_document_titles = ""
|
169 |
# for document in topk_documents:
|
|
|
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 |
except:
|
161 |
print(f"Document parsing error for title and other contents-\n{document}")
|
162 |
+
title = "Document title"
|
163 |
+
doc_details = document
|
164 |
+
try:
|
165 |
+
with st.expander(f"Rank {ix+1} - {title}", expanded=False):
|
166 |
+
st.markdown(doc_details)
|
167 |
+
except:
|
168 |
+
print(f"Error in expander {idx} logic")
|
169 |
|
170 |
# retrieved_document_titles = ""
|
171 |
# for document in topk_documents:
|