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