Asiya057's picture
Create app.py
d705216 verified
raw
history blame
325 Bytes
import streamlit as st
from main import qa
st.title('Chatbot')
user_input = st.text_input("Enter your question here:")
if st.button('Submit'):
if user_input:
response = qa({"question": user_input})
st.write('Chatbot:', response.get('answer', ''))
else:
st.write('Please enter a question.')