| """ | |
| Cores package β shared internal modules. | |
| This is the consolidation layer. Every provider imports from here | |
| instead of reimplementing the same logic. Cores sit between utils/ | |
| (low-level helpers) and providers/ (high-level integrations). | |
| Dependency direction: | |
| utils β cores β providers β pipeline β orchestrator | |
| Cores may import from utils and models, but never from providers, | |
| pipeline, orchestrator, services, or api. | |
| """ | |
| from cores import vision, face, metadata, search, embedding, onnx | |
| __all__ = ["vision", "face", "metadata", "search", "embedding", "onnx"] | |