The Multi-Purpose RAG Application simplifies getting answers from your information. Just pick a source - like a document, a website, or a YouTube video - and this AI system turns it into a smart knowledge base. This means you get precise answers to your questions, based directly on the content you provide.
git clone https://github.com/GDGouravDey/multi-purpose-rag.git
cd multi-purpose-rag
python -m venv venv
venv\Scripts\activate (On Windows)
source venv/bin/activate (On macOS/Linux)
OR
conda create -n venv_name
conda activate venv_name
pip install -r requirements.txt
I. Create a .env at the root of the repository
II. Set GOOGLE_API_KEY = "YOUR_GEMINI_API_KEY"
streamlit run app.py