CoolFace
Apppublic

abhishek23HF/NL2SQL3

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
app.py11 linesDownload Raw Back to root
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)