Код: Выделить всё
@app.post("/predict", status_code=200)
def predict(
page_no: int = Form(...), dimensions: list = Form(...), image: UploadFile = File(...)
) -> Dict[str, int]:
Подробнее здесь: https://stackoverflow.com/questions/733 ... efinitions
Код: Выделить всё
@app.post("/predict", status_code=200)
def predict(
page_no: int = Form(...), dimensions: list = Form(...), image: UploadFile = File(...)
) -> Dict[str, int]: