cyberandy commited on
Commit
ebcd7c3
1 Parent(s): 9d24b06

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -63,7 +63,8 @@ def main():
63
 
64
  # Display the AI response in a collapsible section
65
  with st.expander("Show Full Response"):
66
- display_sources(response)
 
67
 
68
  if __name__ == "__main__":
69
  main()
 
63
 
64
  # Display the AI response in a collapsible section
65
  with st.expander("Show Full Response"):
66
+ # Display sources with clickable links in a collapsible section
67
+ display_sources(response.get('sources', []))
68
 
69
  if __name__ == "__main__":
70
  main()