Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -98,7 +98,7 @@ if st_search_button:
|
|
98 |
results = search()
|
99 |
st.subheader("Search results")
|
100 |
for result in results:
|
101 |
-
st.markdown("score: " + result["score"])
|
102 |
st.markdown("title: " + result["title"])
|
103 |
st.markdown("abstract: " + result["abstract"])
|
104 |
-
st.markdown("link: " + result["link"])
|
|
|
98 |
results = search()
|
99 |
st.subheader("Search results")
|
100 |
for result in results:
|
101 |
+
st.markdown("score: " + str(result["score"]))
|
102 |
st.markdown("title: " + result["title"])
|
103 |
st.markdown("abstract: " + result["abstract"])
|
104 |
+
st.markdown("link: (" + result["link"] + ")")
|