hrbot / src /document_processor /__init__.py
Sonu Prasad
integrated dockling
eb353a2
raw
history blame contribute delete
472 Bytes
"""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",
]