AIEcosystem commited on
Commit
25fae57
·
verified ·
1 Parent(s): e109d3f

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +4 -1
src/streamlit_app.py CHANGED
@@ -352,7 +352,10 @@ with tab2:
352
  df = df2.rename(columns={'label': 'question', 'text': 'answer'})
353
 
354
  st.subheader("Extracted Answers", divider="green")
355
- st.write("To download the data, simply hover your cursor over the table. A download icon will appear on the right side.")
 
 
 
356
  st.dataframe(df, use_container_width=True)
357
 
358
  st.subheader("Tree map", divider="green")
 
352
  df = df2.rename(columns={'label': 'question', 'text': 'answer'})
353
 
354
  st.subheader("Extracted Answers", divider="green")
355
+ expander = st.expander("**Download**")
356
+ expander.write("""
357
+ To download the data, simply hover your cursor over the table. A download icon will appear on the right side.
358
+ """)
359
  st.dataframe(df, use_container_width=True)
360
 
361
  st.subheader("Tree map", divider="green")