132 lines
4.4 KiB
Python
132 lines
4.4 KiB
Python
"""
|
|
Training routes for gateway
|
|
"""
|
|
|
|
from fastapi import APIRouter, Request, HTTPException, Query
|
|
from fastapi.responses import JSONResponse
|
|
import httpx
|
|
import logging
|
|
from typing import Optional
|
|
|
|
from app.core.config import settings
|
|
|
|
logger = logging.getLogger(__name__)
|
|
router = APIRouter()
|
|
|
|
@router.get("/status/{training_job_id}")
|
|
async def get_training_status(training_job_id: str, request: Request):
|
|
"""Get training job status"""
|
|
try:
|
|
auth_header = request.headers.get("Authorization")
|
|
|
|
async with httpx.AsyncClient(timeout=10.0) as client:
|
|
response = await client.get(
|
|
f"{settings.TRAINING_SERVICE_URL}/status/{training_job_id}",
|
|
headers={"Authorization": auth_header}
|
|
)
|
|
|
|
return JSONResponse(
|
|
status_code=response.status_code,
|
|
content=response.json()
|
|
)
|
|
|
|
except httpx.RequestError as e:
|
|
logger.error(f"Training service unavailable: {e}")
|
|
raise HTTPException(
|
|
status_code=503,
|
|
detail="Training service unavailable"
|
|
)
|
|
except Exception as e:
|
|
logger.error(f"Training status error: {e}")
|
|
raise HTTPException(status_code=500, detail="Internal server error")
|
|
|
|
@router.get("/models")
|
|
async def get_trained_models(request: Request):
|
|
"""Get trained models"""
|
|
try:
|
|
auth_header = request.headers.get("Authorization")
|
|
|
|
async with httpx.AsyncClient(timeout=10.0) as client:
|
|
response = await client.get(
|
|
f"{settings.TRAINING_SERVICE_URL}/models",
|
|
headers={"Authorization": auth_header}
|
|
)
|
|
|
|
return JSONResponse(
|
|
status_code=response.status_code,
|
|
content=response.json()
|
|
)
|
|
|
|
except httpx.RequestError as e:
|
|
logger.error(f"Training service unavailable: {e}")
|
|
raise HTTPException(
|
|
status_code=503,
|
|
detail="Training service unavailable"
|
|
)
|
|
except Exception as e:
|
|
logger.error(f"Get models error: {e}")
|
|
raise HTTPException(status_code=500, detail="Internal server error")
|
|
|
|
@router.get("/jobs")
|
|
async def get_training_jobs(
|
|
request: Request,
|
|
limit: Optional[int] = Query(10, ge=1, le=100),
|
|
offset: Optional[int] = Query(0, ge=0)
|
|
):
|
|
"""Get training jobs"""
|
|
try:
|
|
auth_header = request.headers.get("Authorization")
|
|
|
|
async with httpx.AsyncClient(timeout=10.0) as client:
|
|
response = await client.get(
|
|
f"{settings.TRAINING_SERVICE_URL}/jobs",
|
|
params={"limit": limit, "offset": offset},
|
|
headers={"Authorization": auth_header}
|
|
)
|
|
|
|
return JSONResponse(
|
|
status_code=response.status_code,
|
|
content=response.json()
|
|
)
|
|
|
|
except httpx.RequestError as e:
|
|
logger.error(f"Training service unavailable: {e}")
|
|
raise HTTPException(
|
|
status_code=503,
|
|
detail="Training service unavailable"
|
|
)
|
|
except Exception as e:
|
|
logger.error(f"Get training jobs error: {e}")
|
|
raise HTTPException(status_code=500, detail="Internal server error")
|
|
|
|
@router.post("/jobs")
|
|
async def start_training_job(request: Request):
|
|
"""Start a new training job - Proxy to training service"""
|
|
try:
|
|
body = await request.body()
|
|
auth_header = request.headers.get("Authorization")
|
|
|
|
async with httpx.AsyncClient(timeout=30.0) as client:
|
|
response = await client.post(
|
|
f"{settings.TRAINING_SERVICE_URL}/training/jobs", # Correct path
|
|
content=body,
|
|
headers={
|
|
"Content-Type": "application/json",
|
|
"Authorization": auth_header
|
|
}
|
|
)
|
|
|
|
return JSONResponse(
|
|
status_code=response.status_code,
|
|
content=response.json()
|
|
)
|
|
|
|
except httpx.RequestError as e:
|
|
logger.error(f"Training service unavailable: {e}")
|
|
raise HTTPException(
|
|
status_code=503,
|
|
detail="Training service unavailable"
|
|
)
|
|
except Exception as e:
|
|
logger.error(f"Start training job error: {e}")
|
|
raise HTTPException(status_code=500, detail="Internal server error") |