Add basic backend infrastructure

Signed-off-by: Felipe Cardoso <felipe.cardoso@hotmail.it>
This commit is contained in:
2025-01-22 18:02:07 +01:00
parent 80c8537614
commit 805ed647cd
16 changed files with 179 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
from app.models.training import TrainingStatus
class TrainingMonitor:
async def get_status(self) -> TrainingStatus:
# Implementation for parsing tqdm output
# This is a placeholder - actual implementation needed
pass
async def get_log(self):
# Implementation for getting recent log entries
# This is a placeholder - actual implementation needed
pass