rag-data-platform / app /services /__init__.py
Vipooshanb's picture
Deploy Mozhii RAG Data Platform
af25178 verified
Raw
History Blame Contribute Delete
658 Bytes
"""
=============================================================================
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']