Spaces:
Runtime error
Runtime error
| """ | |
| ============================================================================= | |
| Mozhii RAG Data Platform - Services Package | |
| ============================================================================= | |
| This package contains service modules for business logic. | |
| Services: | |
| - huggingface: HuggingFace Hub integration for data sync | |
| - storage: Local file storage management | |
| Services encapsulate complex operations and keep routes clean. | |
| ============================================================================= | |
| """ | |
| from .huggingface import HuggingFaceService | |
| from .storage import StorageService | |
| __all__ = ['HuggingFaceService', 'StorageService'] | |