CoolFace
Apppublic

aniket47/document-intelligence-chatbot

sourceHugging Facemitupdated 11mo agoView on Hugging Face
0likes
App README

๐Ÿ“š Universal Document Intelligence Chatbot

![Streamlit](https://streamlit.io) ![HuggingFace](https://huggingface.co) ![Python](https://python.org)

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

bash
# 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