Spaces:
Sleeping
Sleeping
add expander
Browse files
app.py
CHANGED
@@ -144,32 +144,42 @@ def retriever(query: str, selected_retriever: str):
|
|
144 |
|
145 |
corpus = '\n\n'.join(topk_documents)
|
146 |
|
147 |
-
|
148 |
-
for document in topk_documents:
|
149 |
try:
|
150 |
idx = document.lower().index("abstract:")
|
151 |
title = document[:idx].replace('\n', ' ')
|
152 |
-
|
|
|
|
|
153 |
except:
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
|
174 |
# You could return retrieved info here.
|
175 |
return corpus
|
|
|
144 |
|
145 |
corpus = '\n\n'.join(topk_documents)
|
146 |
|
147 |
+
for idx, document in topk_documents:
|
|
|
148 |
try:
|
149 |
idx = document.lower().index("abstract:")
|
150 |
title = document[:idx].replace('\n', ' ')
|
151 |
+
doc_details = document[idx:]
|
152 |
+
with st.expander(f"Rank {ix+1} - {title}"):
|
153 |
+
st.write(f"doc_details")
|
154 |
except:
|
155 |
+
pass
|
156 |
+
|
157 |
+
# retrieved_document_titles = ""
|
158 |
+
# for document in topk_documents:
|
159 |
+
# try:
|
160 |
+
# idx = document.lower().index("abstract:")
|
161 |
+
# title = document[:idx].replace('\n', ' ')
|
162 |
+
# retrieved_document_titles = retrieved_document_titles + title + ' ||| '
|
163 |
+
# except:
|
164 |
+
# retrieved_document_titles = retrieved_document_titles + document + ' ||| '
|
165 |
+
|
166 |
+
# display_retrieved_documents = f"Retrieved Documents - ||| {retrieved_document_titles}"
|
167 |
+
|
168 |
+
# with st.chat_message("assistant"):
|
169 |
+
# placeholder = st.empty()
|
170 |
+
# text = ""
|
171 |
+
|
172 |
+
# print(display_retrieved_documents)
|
173 |
+
|
174 |
+
# for chunk in display_retrieved_documents.split():
|
175 |
+
# if chunk == "|||":
|
176 |
+
# text += " \n" + " \n"
|
177 |
+
# else:
|
178 |
+
# text += chunk + " "
|
179 |
+
# time.sleep(0.05)
|
180 |
+
# # Add a blinking cursor to simulate typing
|
181 |
+
# placeholder.markdown(text + "▌")
|
182 |
+
# placeholder.markdown(text)
|
183 |
|
184 |
# You could return retrieved info here.
|
185 |
return corpus
|