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