File size: 186 Bytes
fb2ab55
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from fastapi import APIRouter, HTTPException

router = APIRouter()


@router.post("/predict")
async def predict():
    raise HTTPException(501, detail="Not implemented yet — Phase 4")