Doxpert is a Retrieval-Augmented Generation (RAG) application that processes documents (PDF, Word, PPT) and uses embeddings to answer queries.
- Supports Multiple Docs
- Works with multiple document types (PDF, Word, PPT)
- Runs locally, uses relatively less resources.
- Accurate Answers in real time with the help of Gemini AI.
- Python 3.8
- PIP
- Google API Key
- Create a virtual environment
python -m venv doc_ai
- Activate virtual environment
doc_ai\Scripts\activate
- Install dependencies using:
pip install -r requirements.txt
- Configure you Google API Key
GOOGLE_API_KEY=your_google_api
- Run the application using
streamlit run doc_ai.py