first commit

This commit is contained in:
dongdongunique
2025-12-10 00:54:02 +08:00
parent 2cf4168ecf
commit f3af94df0b
254 changed files with 9821 additions and 25 deletions
@@ -0,0 +1,14 @@
"""
Blackbox attack implementations for the Jailbreak Toolbox.
This module contains implementations of various blackbox attacks against language models.
Each attack is automatically registered with the attack_registry when imported.
"""
# Import all blackbox attack implementations here
from jailbreak_toolbox.attacks.blackbox.implementations import *
# You can also use __all__ to control what's imported with "from implementations import *"
__all__ = [
"EvosynthAttack",
]