init python: import re def remove_step_insensitive(text): if 'blood related' not in text: return text return text.replace('not blood related', 'blood related').replace("aren't blood related", 'are blood related').replace(', but this is not normal', '') config.say_menu_text_filter = remove_step_insensitive