Files
dongdongunique f3af94df0b first commit
2025-12-10 00:54:02 +08:00

14 lines
481 B
Python

"""
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",
]