Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -180,6 +180,5 @@ if search_buttion or prev_query != query_input:
|
|
180 |
page_url = df.iloc[idx]["page"]
|
181 |
for img_url in df.iloc[idx]["images"]:
|
182 |
md_content += f'<a href="{page_url}" target="_blank" rel="noopener noreferrer"><img src="{img_url}" width="100"></a>'
|
183 |
-
md_content += f'\n[
|
184 |
-
# md_content += f'\n{df.iloc[idx]["normalized_description"]}'
|
185 |
st.markdown(md_content, unsafe_allow_html=True)
|
|
|
180 |
page_url = df.iloc[idx]["page"]
|
181 |
for img_url in df.iloc[idx]["images"]:
|
182 |
md_content += f'<a href="{page_url}" target="_blank" rel="noopener noreferrer"><img src="{img_url}" width="100"></a>'
|
183 |
+
md_content += f'\n[{distance / 2:.4f}: {df.iloc[idx]["description"]}]({page_url})'
|
|
|
184 |
st.markdown(md_content, unsafe_allow_html=True)
|