File size: 345 Bytes
d520909
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""
Document Processing Pipeline

Orchestrates OCR -> Layout -> Reading Order -> Chunking -> Grounding.
"""

from .processor import (
    PipelineConfig,
    DocumentProcessor,
    get_document_processor,
    process_document,
)

__all__ = [
    "PipelineConfig",
    "DocumentProcessor",
    "get_document_processor",
    "process_document",
]