Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -100,8 +100,7 @@ if st_search_button:
|
|
100 |
st.subheader("Top-3 Search results")
|
101 |
for i, result in enumerate(results):
|
102 |
st.markdown(f"#### Result {i+1}")
|
103 |
-
st.markdown("
|
104 |
-
st.markdown("
|
105 |
-
st.markdown("
|
106 |
-
st.markdown("*Link:* (" + result["link"] + ")")
|
107 |
st.text("")
|
|
|
100 |
st.subheader("Top-3 Search results")
|
101 |
for i, result in enumerate(results):
|
102 |
st.markdown(f"#### Result {i+1}")
|
103 |
+
st.markdown("**Wikipedia article:** " + result["title"])
|
104 |
+
st.markdown("**Link:**" + result["link"])
|
105 |
+
st.markdown("**First paragraph:** " + result["abstract"])
|
|
|
106 |
st.text("")
|