zakerytclarke commited on
Commit
e48e44f
·
verified ·
1 Parent(s): 4dcc069

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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