ykl7 commited on
Commit
35b2358
·
1 Parent(s): dbc6fe0

add expander

Browse files
Files changed (1) hide show
  1. app.py +32 -22
app.py CHANGED
@@ -144,32 +144,42 @@ def retriever(query: str, selected_retriever: str):
144
 
145
  corpus = '\n\n'.join(topk_documents)
146
 
147
- retrieved_document_titles = ""
148
- for document in topk_documents:
149
  try:
150
  idx = document.lower().index("abstract:")
151
  title = document[:idx].replace('\n', ' ')
152
- retrieved_document_titles = retrieved_document_titles + title + ' ||| '
 
 
153
  except:
154
- retrieved_document_titles = retrieved_document_titles + document + ' ||| '
155
-
156
- display_retrieved_documents = f"Retrieved Documents - ||| {retrieved_document_titles}"
157
-
158
- with st.chat_message("assistant"):
159
- placeholder = st.empty()
160
- text = ""
161
-
162
- print(display_retrieved_documents)
163
-
164
- for chunk in display_retrieved_documents.split():
165
- if chunk == "|||":
166
- text += " \n" + " \n"
167
- else:
168
- text += chunk + " "
169
- time.sleep(0.05)
170
- # Add a blinking cursor to simulate typing
171
- placeholder.markdown(text + "▌")
172
- placeholder.markdown(text)
 
 
 
 
 
 
 
 
 
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