| title | emoji | colorFrom | colorTo | sdk | sdk_version | python_version | app_file | pinned | short_description |
|---|---|---|---|---|---|---|---|---|---|
Doc Chat |
📈 |
yellow |
red |
gradio |
6.2.0 |
3.11 |
app.py |
false |
A RAG-based Agentic AI APP with LangGraph and Docling |
A RAG-based agentic AI app powered by LangGraph and Docling, using ChromaDB for serverless vector storage. Hybrid search retrieves the most relevant content to generate accurate answers from your documents.
Ask questions about your documents to explore them in depth.
Demo: https://huggingface.co/spaces/Azam-Rabiee/doc_chat
uv is a fast Python package and environment manager.
curl -LsSf https://astral.sh/uv/install.sh | shRestart your terminal after installation.
uv venv .venv# macOS / Linux
source .venv/bin/activate
# Windows (PowerShell)
.venv\Scripts\Activate.ps1uv syncThis installs exact, reproducible versions from
uv.lock.
Use this if you don’t want to install uv.
python -m venv .venv# macOS / Linux
source .venv/bin/activate
# Windows (PowerShell)
.venv\Scripts\Activate.ps1python -m pip install --upgrade pip setuptools wheelpip install -r requirements.txtpython --version
pip listdeactivatesource .venv/bin/activate
python app.py
For example for test_files_api_info_generation
python -m pytest tests/document_processor/file_upload.py::test_files_api_info_generation
