import streamlit as st # Create two text input boxes text_input_db_id= st.text_input("DB ID") text_input_question = st.text_input("User Query") # make_inference(your_db_id_here, your_db_query_here) # Display the text input boxess if st.button('Submit'): st.write(text_input_db_id+text_input_question)