d0fda5a 5482546 d0fda5a
1
2
3
4
5
6
7
8
9
from typing import List from pydantic import BaseModel from src.schemas.PredictItemResult import PredictItemResult class PredictResponse(BaseModel): model_name: str results: List[PredictItemResult]