from pydantic import BaseModel from typing import Dict, Any, List class FeatureFlagsResponse(BaseModel): """Response model for feature flags""" flags: Dict[str, Any] enabled_flags: List[str] class FeatureFlagResponse(BaseModel): """Response model for a single feature flag""" name: str enabled: bool value: Any