Initial commit: MLflow dashboard project
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
11
routers/train.py
Normal file
11
routers/train.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from fastapi import APIRouter, HTTPException
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
|
||||
@router.post("/train")
|
||||
def start_train():
|
||||
raise HTTPException(
|
||||
status_code=501,
|
||||
detail="Train trigger is not implemented yet. Will be connected to training server.",
|
||||
)
|
||||
Reference in New Issue
Block a user