Files
eveAI/eveai_workers/processors/__init__.py
Josako 866cc2a60d - Fixed bug where negative answers in KO Criteria resulted in a blank answer
- Fixed bug where removal of audio processor caused eveai_workers to not start up, resulting in documents not being processed.
2025-08-07 08:52:15 +02:00

5 lines
332 B
Python

# Import all processor implementations to ensure registration
from . import html_processor, pdf_processor, markdown_processor, docx_processor, automagic_html_processor
# List of all available processor implementations
__all__ = ['html_processor', 'pdf_processor', 'markdown_processor', 'docx_processor', 'automagic_html_processor']