How to define streamlit columns at the bottom of the page ,
col1, col2, = st.columns(2,vertical_alignment="bottom")
# Text input
with col1:
user_input = st.chat_input("Type your message here...")
with col2:
# Voice input button
if st.button("๐ค"):
filename = "output.wav"
record_audio(filename)
transcription = transcribe_audio(filename)
st.session_state.voice_input = transcription
st.write("Transcription: ", transcription)
when in try the above code , it renders at the top of the page instead of bottom ,
if i am doing any thing wrong let me know modify to keep it at the bottom of the page