- Implementa ProcessingMonitor singleton para procesamiento secuencial de archivos - Agrega AI summary service con soporte para MiniMax API - Agrega PDF generator para resúmenes - Agrega watchers para monitoreo de carpeta remota - Mejora sistema de notificaciones Telegram - Implementa gestión de VRAM para GPU - Configuración mediante variables de entorno (sin hardcoded secrets) - .env y transcriptions/ agregados a .gitignore Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
5 lines
141 B
Python
5 lines
141 B
Python
"""Export de watchers."""
|
|
from .folder_watcher import FolderWatcher, RemoteFolderWatcher
|
|
|
|
__all__ = ["FolderWatcher", "RemoteFolderWatcher"]
|