Yassine Mhirsi
first test
9db766f
raw
history blame
224 Bytes
"""Pydantic schemas for health check endpoints"""
from pydantic import BaseModel
class HealthResponse(BaseModel):
"""Health check response"""
status: str
model_loaded: bool
device: str
timestamp: str