deepm09/SQLDB_Tshirts
0
1import streamlit as st2from langchain_helper import get_few_shot_db_chain3 4st.title("AtliQ T Shirts: Database Q&A ๐")5 6question = st.text_input("Question: ")7 8if question:9 chain = get_few_shot_db_chain()10 response = chain.run(question)11 12 st.header("Answer")13 st.write(response)14 15 16 17 18 19 20 