"""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