Spaces:
Configuration error
Configuration error
File size: 1,102 Bytes
3f7f9d9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
import streamlit as st
from backend.ocr import extract_text_from_pdf
from backend.rag_model import setup_retriever_and_qa, get_answer
st.set_page_config(page_title="StudyMate - PDF Q&A", layout="wide")
st.title("π StudyMate: AI-Powered PDF-Based Q&A System")
# Initialize retriever and RAG model
retriever, rag_pipeline = setup_retriever_and_qa()
uploaded_file = st.file_uploader("Upload your study material (PDF)", type="pdf")
if uploaded_file:
with st.spinner("Extracting content from PDF..."):
full_text = extract_text_from_pdf(uploaded_file)
st.success("PDF content extracted!")
if full_text:
st.text_area("π Extracted Text Preview", full_text[:2000], height=300)
query = st.text_input("π¬ Ask a question based on the PDF")
if query:
with st.spinner("Thinking..."):
answer = get_answer(full_text, query, retriever, rag_pipeline)
st.markdown(f"**π§ Answer:** {answer}")
else:
st.error("Failed to extract text from the PDF.")
else:
st.info("Please upload a PDF to get started.")
|