export function removeAiLabel(value, fallback = '') { const text = typeof value === 'string' ? value.replace(/AI/g, '').trim() : ''; return text || fallback; }