abhishek23HF/NL2SQL3
0
1import streamlit as st2# Create two text input boxes3text_input_db_id= st.text_input("DB ID")4text_input_question = st.text_input("User Query")5 6# make_inference(your_db_id_here, your_db_query_here)7 8# Display the text input boxess9 10if st.button('Submit'):11 st.write(text_input_db_id+text_input_question)