/** * Native mirror of the web builder's feature-flag keys * (`frontend/apps/builder/src/constants/featureFlags.ts`), copied verbatim so the * model registry references `FEATURE_FLAGS.X` instead of hard-coded flag strings. */ export const FEATURE_FLAGS = { CLAUDE_FABLE_5: 'claude-fable-5', MODEL_ARENA: 'model-arena', GLM_5_2: 'glm-5-2', BASE1_S_MODEL: 'base1-s-model', } as const; export type FeatureFlagValue = (typeof FEATURE_FLAGS)[keyof typeof FEATURE_FLAGS];