mirror of
https://github.com/dongdongunique/EvoSynth.git
synced 2026-02-12 17:22:44 +00:00
14 lines
481 B
Python
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",
|
|
] |