A small, hand-curated set of jailbreak and prompt-injection fixtures for testing LLM-app guardrails. Not a benchmark — a fixture library you import into your own unit and integration tests.
from datasets import load_dataset
ds = load_dataset("mukunda1729/jailbreak-corpus-mini", split="train")
for fx in ds:
print(fx["category"], fx["severity"], fx["prompt"][:60])
15 fixtures spread across 8 categories and 3 severity levels:… See the full description on the dataset page:
https://huggingface.co/datasets/mukunda1729/jailbreak-corpus-mini.