Spaces:
Sleeping
Sleeping
| """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", | |
| ] | |