Spaces:
Sleeping
Sleeping
File size: 472 Bytes
8a1c0d1 eb353a2 8a1c0d1 eb353a2 8a1c0d1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | """Document processor module for HR Report Generator."""
from src.document_processor.chunker import DocumentChunk, SemanticChunker
# Optional: Docling converter (may not be available)
try:
from src.document_processor.converter import DoclingConverter
DOCLING_AVAILABLE = True
except ImportError:
DoclingConverter = None
DOCLING_AVAILABLE = False
__all__ = [
"DocumentChunk",
"SemanticChunker",
"DoclingConverter",
"DOCLING_AVAILABLE",
]
|