face-intel / orchestrator /__init__.py
Marwan
Restructure + add reverse face search (PimEyes-style)
f5eeb1c
Raw
History Blame Contribute Delete
496 Bytes
"""
Orchestrator package — async fan-out across providers.
After the refactor, the orchestrator receives its dependencies
(registry, cache, metrics, settings) through its constructor. No
globals, no module-level state.
"""
from orchestrator.runner import Orchestrator
from orchestrator.retry import RetryPolicy, with_retry_sync, with_retry_async
from orchestrator.health import HealthMonitor
__all__ = ["Orchestrator", "RetryPolicy", "with_retry_sync", "with_retry_async", "HealthMonitor"]