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

router = APIRouter()


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