PTE_Smart-AI / rag_initializer.py
JohnsonMLEngineer's picture
Update rag_initializer.py
3711c26 verified
raw
history blame contribute delete
443 Bytes
import streamlit as st
from document_processor import read_documents, chunk_data
from embeddings_store import create_embeddings_and_store
@st.cache_resource
def initialize_rag_chain():
try:
docs = read_documents("maindataset.pdf")
doc_chunks = chunk_data(docs)
return create_embeddings_and_store(doc_chunks)
except Exception as e:
st.error(f"Error initializing RAG chain: {str(e)}")
return None