from datasets import load_dataset
ds = load_dataset("fevziegeyurtsevenler/turkish-casefold-evasion")
"İGNORE".lower() is not "ignore". Python's str.lower() maps the Turkish dotted capital
İ (U+0130) to i + a combining dot (U+0307), so prompt-injection filters that do
text.lower() + substring matching silently miss Turkish-cased and Unicode-confusable triggers.
This dataset pairs common injection trigger phrases with Turkish case-fold / confusable… See the full description on the dataset page:
https://huggingface.co/datasets/fevziegeyurtsevenler/turkish-casefold-evasion.