File size: 307 Bytes
433ad98
 
 
 
 
e5641ed
433ad98
11a14ec
433ad98
 
b710b08
1
2
3
4
5
6
7
8
9
10
11
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)