aniket47/document-intelligence-chatbot
0
๐ Universal Document Intelligence Chatbot
  
A simple, private, and powerful chatbot that can answer your questions using both your own documents and the web.
โจ Features
- ๐ Runs locally: Uses Hugging Face Transformers, so your data stays private
- โก Quick search: Finds answers fast with Sentence Transformers and FAISS
- ๐ง Smart routing: Decides when to pull from your documents or from the web
- ๐ Handles PDFs: Upload PDFs and ask questions directly
- ๐ Stay up to date: Can use web search for the latest information
- ๐ฆ No setup hassle: Downloads models automatically the first time you use them
๐ Quick Start
Local Setup
# Create a virtual environment
python -m venv venv
# Activate it (Windows)
venv\Scripts\activate.bat
# Activate it (Mac/Linux)
source venv/bin/activate
# Install dependencies
pip install -r requirements.txt
# Launch the app
streamlit run app.py
