Skip to main content

mm-asset-rag

Multimodal retrieval engine — index mixed assets (PDFs / Office docs / images), then search across four routes: text→text, text→image, image→image, and weighted hybrid, fused with RRF. An optional grounded LLM answer layer rides on top of the retrieved evidence.

Python License Tests

What is this?

A small, self-contained Python package for multimodal retrieval over user-uploaded assets — PDFs, Office documents (docx/pptx/xlsx), and images. The retrieval engine is the core; generation is an optional layer on top. It supports:

  • Four retrieval routes: text→text (dense + BM25 sparse fused with RRF), text→image (CLIP), image→image (CLIP), and a weighted hybrid that merges all routes by rank. One dispatch picks the route from the query shape.
  • Cross-modal retrieval: embedded figures in PDFs and Office docs are extracted and (optionally) given VLM captions so a text query can hit a figure-only slide; a find images similar to this one query hits the CLIP image collection. The same asset store feeds both.
  • Upload-first ingestion: no asset_manifest.json. /upload/preview sniffs file magic bytes, extracts dimensions / PDF metadata, optionally asks a VLM for title / description / tags, then /upload/confirm parses and indexes.
  • Parsing: PyMuPDF (local) or PaddleOCR-VL (API, better for scanned PDFs) for PDFs; MarkItDown / docling for Office docs; OCR + VLM captioning for images.
  • Indexing: Qdrant (local file or server). Text points carry dense + BM25 + Chinese-aware BM25-zh sparse vectors; image points carry CLIP vectors.
  • Optional generation: OpenAI-compatible chat completion with strict evidence grounding and NDJSON streaming. When no LLM is configured, /answer and /chat return an evidence summary instead of failing — retrieval still works.
  • Web UI: a bundled single-page HTML (mm_asset_rag/web/index.html) served by FastAPI for upload preview, task status, and chat.

VLM-based auto-tagging is also optional; upload still works with sniff-only metadata.

Why this project?

If you have a folder of mixed assets — papers, slide decks, photos, diagrams — and want to ask "find images similar to this one", "which document covers retrieval-augmented generation?", or "show me the slide whose only content is a roadmap diagram", this is a working starting point. The focus is retrieval: four routes, cross-modal, fused by rank, with every layer replaceable.

It is not a research-grade system; it is a modular multimodal retrieval engine that exposes the moving parts so you can swap any layer (parser, embedder, backend, reranker, LLM) without rewriting the rest.

Compared to larger frameworks:

  • vs LlamaIndex Studio / Verba: this ships with a web UI, is multimodal-retrieval-first rather than text-RAG-first, and keeps every module under 2k lines.
  • vs Haystack / txtai: smaller surface area, four-route retrieval baked in from day one, easier to read end-to-end.

Installation

Install the latest release from PyPI:

pip install mm-asset-rag   # core: text + image (lite) retrieval, FastAPI web UI

Optional CLIP-based image embeddings (recommended if you want text→image / image→image routes on real image corpora):

pip install "mm-asset-rag[clip]"     # sentence-transformers CLIP

Optional multi-format Office document parsing (docx/pptx/xlsx/html) beyond the default MarkItDown:

pip install "mm-asset-rag[docling]"  # layout-aware docling parser (heavier, pulls torch/transformers)

For local development from source:

git clone https://github.com/lgy1027/mm-asset-rag
cd mm-asset-rag
pip install -e ".[dev,clip]"

Or with uv (reproducible installs from the committed uv.lock):

uv sync --extra dev

Quick start

# 1. Start the API + web UI
mmrag-api
# → http://127.0.0.1:8011/
# → http://127.0.0.1:8011/docs

# 2. Open the web UI, drag PDFs/images, review the preview cards,
#    edit title/tags if needed, then click Confirm & Ingest.

# 3. Search / answer from CLI after ingest completes
mmrag search "which document covers retrieval-augmented generation?"
mmrag answer "which document covers retrieval-augmented generation?"

CLI ingestion is also upload-first:

mmrag parse ./paper.pdf ./photo.jpg
mmrag reindex
mmrag search "find the beach photo"

Qdrant local-file lock is single-process. While mmrag-api is running, run mmrag reindex from another terminal and it will fail with a "storage already accessed" lock error. Either stop the API first, or point QDRANT_URL at a Qdrant server for concurrent access.

Upload flow

POST /upload/preview (multipart files)
  ├─ stream files into .preview-cache/
  ├─ sniff magic bytes: pdf / image / unsupported
  ├─ extract local metadata: PDF /Info, page count, image size, EXIF
  ├─ optional VLM JSON mode: title / description / tags
  └─ return editable preview cards

POST /upload/confirm (cache_id + edited previews)
  ├─ move confirmed files into assets/pdfs, assets/images, or assets/documents
  ├─ parse PDF/image/document into documents.jsonl
  ├─ upsert text chunks into Qdrant text collection
  └─ upsert image vectors into Qdrant image collection

Configuration

All settings come from environment variables (a .env file in the current directory is loaded automatically). The most important ones:

Variable Purpose Default
MM_ASSET_RAG_HOME Where to put uploaded assets, parsed data, indexes, task log. ~/.mm_asset_rag
OPENAI_API_KEY / OPENAI_BASE_URL / OPENAI_MODEL LLM for /answer and /chat.
EMBEDDING_* Text embedding provider (defaults to OpenAI-compatible).
QDRANT_URL / QDRANT_API_KEY Qdrant server mode (omit to use local file mode).
CLIP_MODEL Sentence-transformers CLIP model name (with [clip] extra). clip-ViT-B-32
VLM_BASE_URL / VLM_API_KEY / VLM_MODEL VLM for upload auto-tagging and image captions. Falls back to OPENAI_*.
AUTO_META_ENABLED Enable VLM title/description/tag extraction during upload preview. true
PADDLEOCR_VL_API_TOKEN PaddleOCR-VL API token for scanned PDFs.
OCR_HTTP_URL Optional local OCR service for image text extraction.

See .env.example and docs/configuration.md for the full list.

Evaluation

mmrag eval runs a fixed set of expected-query → expected-asset cases against the live index and reports hit-rate / MRR. It needs the expected assets to be already ingested first — otherwise every case returns hit: false, which looks like the system is broken.

# 1. Ingest the eval corpus (the cases reference known PDFs/images —
#    point mmrag parse at whatever corpus you want to evaluate against).
mmrag parse ./my_eval_corpus/*.pdf
# 2. Run the evaluation
mmrag eval          # v1 case set
mmrag eval --v2     # v2: 83 Chinese-primary, multi-dimensional cases

When no LLM is configured, the eval still runs (it measures retrieval only); /answer-dependent cases degrade gracefully.

Project layout

mm-asset-rag/
├── mm_asset_rag/         # single Python package (flat layout + sub-packages)
│   ├── api.py            # FastAPI app: thin route layer, delegates to service.py
│   ├── cli.py            # `mmrag` / `mmrag-api` console scripts
│   ├── service.py        # IngestService: parse / index / task-history
│   ├── upload_pipeline.py# preview → confirm upload flow
│   ├── sniff.py          # file magic + local metadata detection
│   ├── auto_meta.py      # VLM JSON-mode metadata extraction
│   ├── settings.py       # pydantic-settings: every env var in one place
│   ├── protocols.py      # Parser / Embedder / VectorBackend Protocol definitions
│   ├── registry.py       # Module-level parsers / embedders / backends registries
│   ├── paths.py          # on-disk layout under $MM_ASSET_RAG_HOME
│   ├── assets.py         # Asset dataclass
│   ├── schema.py         # SearchHit, ParsedDocument
│   ├── document_store.py # unified ParsedDocument JSONL store
│   ├── answer.py         # grounded answer generation (streaming + sync)
│   ├── evaluation.py     # mini regression suite
│   ├── retrieval.py      # hybrid merge + normalize
│   ├── parsers/          # PDF/image parser implementations
│   ├── embedders/        # text/image embedder implementations
│   └── backends/         # Qdrant backend implementation
├── tests/unit/           # offline unit tests
├── tests/integration/    # marked @pytest.mark.integration
├── docs/                 # architecture, configuration, api
└── scripts/              # eval_rag.py, benchmark.py, *.sh eval pilots

Adding a new modality (audio, video)

Three-line change, no central dispatch to edit:

  1. Drop parsers/audio_parser.py whose class satisfies protocols.Parser.
  2. register_parser(AudioParser()) in parsers/__init__.py.
  3. Drop embedders/audio_embedder.py whose class satisfies protocols.Embedder, and register_embedder(...) it.

The FastAPI app, CLI, and Qdrant backend all read from the registries at runtime.

Documentation

Contributing

See CONTRIBUTING.md and CODE_OF_CONDUCT.md.

License

Apache-2.0. See LICENSE and NOTICE.

Download files

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

Source Distribution

mm_asset_rag-0.1.1.tar.gz (635.6 kB view details)

Uploaded Source

Built Distribution

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

mm_asset_rag-0.1.1-py3-none-any.whl (224.5 kB view details)

Uploaded Python 3

File details

Details for the file mm_asset_rag-0.1.1.tar.gz.

File metadata

  • Download URL: mm_asset_rag-0.1.1.tar.gz
  • Upload date:
  • Size: 635.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for mm_asset_rag-0.1.1.tar.gz
Algorithm Hash digest
SHA256 25b3c45d4e383a6fc31616f8515b0595ec09425c5970e4abdd48ecb542876bdc
MD5 91428a93fc126126f92974a2c23aecbe
BLAKE2b-256 76079f1e724b3bdbd0247623d1461805b92885969effbcbfed4d0b85a0c47ace

See more details on using hashes here.

Provenance

The following attestation bundles were made for mm_asset_rag-0.1.1.tar.gz:

Publisher: release.yml on lgy1027/mm-asset-rag

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mm_asset_rag-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: mm_asset_rag-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 224.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for mm_asset_rag-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 952edc88d0fa9761636b2dcb1b86bee5d0b96b7148a83344a15ccd472f63a818
MD5 125b2cee320f35c4df77e5c702bb3790
BLAKE2b-256 d8afe99ee0279f6d935509e069066c3b28e885390c65544ff9ad0aaab0617aa6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mm_asset_rag-0.1.1-py3-none-any.whl:

Publisher: release.yml on lgy1027/mm-asset-rag

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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