inference-api-g1 / schemas /requests.py
alexfremont's picture
Refactor API architecture with modular design and database integration
e109700
raw
history blame contribute delete
212 Bytes
from pydantic import BaseModel
from typing import List
class BatchPredictRequest(BaseModel):
"""Modèle de requête pour des prédictions sur plusieurs images."""
imageUrls: List[str]
modelName: str