Pdf_Chat / app.py
Soumya79's picture
Update app.py
052c026 verified
raw
history blame contribute delete
326 Bytes
import streamlit as st
from main import main
st.title("Chat With Uploaded Pdf")
uploaded_file = st.file_uploader("Choose a PDF file")
user_question = st.text_input("Enter the question from the PDF: ")
if uploaded_file:
if user_question:
response = main(uploaded_file, user_question)
st.write(response)