CoolFace
Apppublic

deepm09/SQLDB_Tshirts

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