Hey Emils - There’s a match on “ai” in “Daily”. For acronyms it’s better to not use toLowerCase() since it will match against longer words.
Try this instead (this will still match something like “DAILY” if it’s all in caps; in which case, ask AI to write you a regex to match AI as a standalone word)
["data", "analytics", "business intelligence", "machine learning", ].some(k=>{{job_title}}?.toLowerCase()?.includes(k)) || ["BI", "AI"].some(k=>{{job_title}}?.includes(k))