Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -54,7 +54,7 @@ def handle_chat(user_input, teapot_ai):
|
|
54 |
for (title, description, url) in results:
|
55 |
# Display Results
|
56 |
st.sidebar.write(f"## {title}")
|
57 |
-
st.sidebar.write(f"{description}")
|
58 |
st.sidebar.write(f"[Source]({url})")
|
59 |
st.sidebar.write("---")
|
60 |
|
|
|
54 |
for (title, description, url) in results:
|
55 |
# Display Results
|
56 |
st.sidebar.write(f"## {title}")
|
57 |
+
st.sidebar.write(f"{description.replace('<strong>','').replace('</strong>','')}")
|
58 |
st.sidebar.write(f"[Source]({url})")
|
59 |
st.sidebar.write("---")
|
60 |
|