sonoisa commited on
Commit
921ce7d
·
1 Parent(s): 95e6b77

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -184,4 +184,5 @@ if search_buttion or prev_query != str(query_input):
184
  for img_url in df.iloc[idx]["images"]:
185
  md_content += f'<a href="{page_url}" target="_blank" rel="noopener noreferrer"><img src="{img_url}" width="100"></a>'
186
  md_content += f'\n[%.4f {df.iloc[idx]["title"]}]({page_url})' % (distance / 2)
 
187
  st.markdown(md_content, unsafe_allow_html=True)
 
184
  for img_url in df.iloc[idx]["images"]:
185
  md_content += f'<a href="{page_url}" target="_blank" rel="noopener noreferrer"><img src="{img_url}" width="100"></a>'
186
  md_content += f'\n[%.4f {df.iloc[idx]["title"]}]({page_url})' % (distance / 2)
187
+ md_content += f'\n{df.iloc[idx]["normalized_description"]}'
188
  st.markdown(md_content, unsafe_allow_html=True)