Skip to main content

Docling → Chroma → Ollama: simple, RAG pipeline

Project description

📄 DocRAG LLM

DocRAG LLM is a simple, Retrieval-Augmented Generation (RAG) pipeline.
It connects Docling (document parsing) → ChromaDB (vector store) → Ollama (local LLMs) into a single workflow, with both a CLI and a Python API.


✨ Features

  • 🔍 Parse documents with Docling (PDF, DOCX, PPTX, HTML, etc.).
  • 📑 Chunk text intelligently for retrieval.
  • 🧠 Store embeddings in ChromaDB.
  • 🤖 Answer questions using Ollama (default: llama3.2:1b).
  • 🛡️ Designed for local execution (no cloud lock-in).
  • 🖥️ Works both as a CLI tool and a Python library.

📦 Installation

pip install docrag-llm

Requirements

  • Python 3.10+
  • Ollama installed and running
  • Models pulled locally:
    ollama pull llama3.2:1b
    ollama pull nomic-embed-text
    

🚀 Quickstart (CLI)

Ingest a document into Chroma

python -m docrag.cli ingest https://arxiv.org/pdf/2408.09869   --persist ./.chroma   --collection demo
  • --persist → directory for Chroma DB (default: ./.chroma)
  • --collection → logical collection name (default: demo)
  • --embed → embedding model (default: nomic-embed-text)

Ask a question (default LLM = llama3.2:1b)

python -m docrag.cli ask "Give a concise bullet summary of the paper's main contributions."   --persist ./.chroma   --collection demo
  • --llm → LLM model to use (default: llama3.2:1b)
  • --top-k → number of chunks retrieved (default: 5)

Export parsed text

python -m docrag.cli export https://arxiv.org/pdf/2408.09869   --out-dir ./exports

Saves parsed text (Markdown/JSON).


CLI Help

python -m docrag.cli --help
python -m docrag.cli ingest --help
python -m docrag.cli ask --help
python -m docrag.cli export --help

🐍 Usage as a Python Library

from docrag import DocragSettings, RAGPipeline

# Configure pipeline
cfg = DocragSettings(
    persist_path="./.chroma",
    collection="demo",
    embed_model="nomic-embed-text",
    llm_model="llama3.2:1b",
)

pipeline = RAGPipeline(cfg)

# Ingest a document
n_chunks = pipeline.ingest("https://arxiv.org/pdf/2408.09869")
print(f"Ingested {n_chunks} chunks")

# Ask a question
answer = pipeline.ask("Give a concise bullet summary of the paper's main contributions.")
print(answer)

⚙️ Configuration

Both the Python API and CLI allow controlling:

  • persist_path → path to Chroma DB
  • collection → collection name
  • embed_model → embedding model (Ollama tag)
  • llm_model → LLM model (default: llama3.2:1b)
  • chunk_chars / chunk_overlap → chunking granularity

📊 Roadmap

  • Add model-check CLI command to list installed Ollama models.
  • Support multiple backends (Weaviate, Milvus).
  • Add streaming output for long answers.
  • Expand test suite with large document regression cases.

🤝 Contributing

PRs and issues welcome! Please run lint and tests before submitting:

ruff check .
pytest

📜 License

MIT License © 2025

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

docrag_llm-0.1.15.tar.gz (5.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

docrag_llm-0.1.15-py3-none-any.whl (7.6 kB view details)

Uploaded Python 3

File details

Details for the file docrag_llm-0.1.15.tar.gz.

File metadata

  • Download URL: docrag_llm-0.1.15.tar.gz
  • Upload date:
  • Size: 5.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for docrag_llm-0.1.15.tar.gz
Algorithm Hash digest
SHA256 c5ff2454b78a0e252fce0ea9b40b1fc2daa5e21c78956ec87544e8f84b64cc58
MD5 4ddf6134235bdcdd36a0c337fbb56912
BLAKE2b-256 18ec25383e25ab06a624f12cdd8f8b0632f1feb03af6c402517909697f677ab8

See more details on using hashes here.

File details

Details for the file docrag_llm-0.1.15-py3-none-any.whl.

File metadata

  • Download URL: docrag_llm-0.1.15-py3-none-any.whl
  • Upload date:
  • Size: 7.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for docrag_llm-0.1.15-py3-none-any.whl
Algorithm Hash digest
SHA256 d380f329bf348200d6b8ffb22a271b709a02959c5b60a1dfac1ff45f0222c6c4
MD5 833fc7a5dc943b8ff16c62a24d0a0452
BLAKE2b-256 b8801f071bcaf775a2b7b0374f6ed3978f4f5c15f6ab6cf7d047b6d42b2fbbbb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page