/** Creativity (temperature) presets shared by the catalog-quality action UIs. */ export const CREATIVITY_OPTIONS: ReadonlyArray<{ label: string; value: string; }> = [ { label: 'Conservative (0.3)', value: '0.3' }, { label: 'Balanced (0.5)', value: '0.5' }, { label: 'Default (0.7)', value: '0.7' }, { label: 'Creative (0.9)', value: '0.9' }, ]; /** FAQ "how many questions" options (1-10), shared across the action UIs. */ export const FAQ_COUNT_OPTIONS: ReadonlyArray = Array.from( { length: 10 }, (_unused, index) => String(index + 1) ); /** Tone presets shared by the bulk-improve modal. */ export const TONE_OPTIONS: ReadonlyArray<{ label: string; value: string }> = [ { label: 'Professional', value: 'professional' }, { label: 'Friendly', value: 'friendly' }, { label: 'Luxury', value: 'luxury' }, { label: 'Technical', value: 'technical' }, { label: 'Custom', value: 'custom' }, ];