ACA050's picture
Create schemas.py
c4c8f23 verified
raw
history blame contribute delete
137 Bytes
from pydantic import BaseModel
from typing import List, Dict, Any
class PredictRequest(BaseModel):
instances: List[Dict[str, Any]]