deploy-machine-learning / src /schemas /PredictResponse.py
marintosti12
feat (api/orm) : first version api with orm
3b97d72
raw
history blame contribute delete
204 Bytes
from typing import List
from pydantic import BaseModel
from schemas.PredictItemResult import PredictItemResult
class PredictResponse(BaseModel):
model_name: str
results: List[PredictItemResult]