from pydantic import BaseModel, ConfigDict class ORMModel(BaseModel): model_config = ConfigDict(from_attributes=True) class HealthResponse(BaseModel): status: str = "ok" service: str version: str