Initial commit - production deployment

This commit is contained in:
2026-01-21 17:17:16 +01:00
commit c23d00dd92
2289 changed files with 638440 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
# services/training/app/models/training_models.py
"""
Legacy file - TrainedModel has been moved to training.py
This file is deprecated and should be removed after migration.
"""
# Import the actual model from the correct location
from .training import TrainedModel
# For backward compatibility, re-export the model
__all__ = ["TrainedModel"]