- Translation Service improvement - Enable activation / deactivation of Processors - Renew API-keys for Mistral (leading to workspaces) - Align all Document views to use of a session catalog - Allow for different processors for the same file type
5 lines
368 B
Python
5 lines
368 B
Python
# Import all processor implementations to ensure registration
|
|
from . import audio_processor, html_processor, pdf_processor, markdown_processor, docx_processor, automagic_html_processor
|
|
|
|
# List of all available processor implementations
|
|
__all__ = ['audio_processor', 'html_processor', 'pdf_processor', 'markdown_processor', 'docx_processor', 'automagic_html_processor'] |