Hey @Myntur, I recommand to read this blogpost:
New layout options for Streamlit
Simply do:
col1, col2 = st.beta_columns(2)
Then you can put the contents into the cols.
Something like:
col1.image(pdf)
col2.write(extraction)
Hey @Myntur, I recommand to read this blogpost:
New layout options for Streamlit
Simply do:
col1, col2 = st.beta_columns(2)
Then you can put the contents into the cols.
Something like:
col1.image(pdf)
col2.write(extraction)