-- Fix: set use_exact = true for all existing room_ai records -- This changes the default behavior so AI only responds when explicitly @mentioned. -- Previously use_exact defaulted to false, causing AI to reply to every message. UPDATE room_ai SET use_exact = true WHERE use_exact = false;