__init__.py 568 B

1234567891011121314
  1. """LightRAG native DOCX parser package.
  2. The :mod:`parse_document` / :mod:`numbering_resolver` / :mod:`table_extractor` /
  3. :mod:`drawing_image_extractor` / :mod:`utils` / :mod:`omml` modules ship the
  4. upstream DOCX extraction logic verbatim (with imports localized for the new
  5. package path).
  6. The pipeline-side orchestration (extract → IR → sidecar) now lives in
  7. :meth:`lightrag.pipeline._PipelineMixin.parse_native` so the native and
  8. MinerU engines share one shape; see :mod:`lightrag.parser.docx.ir_builder`
  9. for the engine IR builder.
  10. """
  11. __all__: list[str] = []