cyberandy commited on
Commit
def45d1
·
verified ·
1 Parent(s): d9610c6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -26,9 +26,8 @@ def fetch_response(query):
26
 
27
  def display_sources(sources):
28
  if sources:
29
- with st.expander("INSPECT THE REPORT - SOURCES"):
30
- for source in sources:
31
- st.markdown(f"[{source['title']}]({source['link']})", unsafe_allow_html=True)
32
  else:
33
  st.write("No sources available.")
34
 
 
26
 
27
  def display_sources(sources):
28
  if sources:
29
+ for source in sources
30
+ st.markdown(f"[{source['title']}]({source['link']})", unsafe_allow_html=True)
 
31
  else:
32
  st.write("No sources available.")
33