pankajsingh3012's picture
Rename main.py to app.py
ac8e2bc verified
raw
history blame contribute delete
No virus
293 Bytes
import streamlit as st
from langchain_helper import get_few_shot_db_chain
st.title("AtliQ T Shirts: Database Q&A πŸ‘•")
question = st.text_input("Question: ")
if question:
chain = get_few_shot_db_chain()
response = chain.run(question)
st.header("Answer")
st.write(response)