HamzaHasan07/Retail_SQL_LLM
0
1import streamlit as st2from main import get_few_shot_db_chain3 4st.title("Retail Products: 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)