File size: 296 Bytes
9db766f 170053d 9db766f 170053d 9db766f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
"""Pydantic schemas for health check endpoints"""
from pydantic import BaseModel, ConfigDict
class HealthResponse(BaseModel):
"""Health check response"""
model_config = ConfigDict(protected_namespaces=())
status: str
model_loaded: bool
device: str
timestamp: str
|