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

20 lines
581 B
Python

"""
Evosynth - Multi-Agent Jailbreak Attack System
A sophisticated multi-agent framework for AI vulnerability assessment and
jailbreak attack research, built on autonomous coordination between specialized agents.
"""
from .evosynth_attack import EvosynthAttack, EvosynthConfig, create_evosynth_attack
# Export main classes and functions
__all__ = [
'EvosynthAttack',
'EvosynthConfig',
'create_evosynth_attack'
]
# Version information
__version__ = "1.0.0"
__author__ = "Evosynth Team"
__description__ = "Multi-Agent Jailbreak Attack System for AI Security Research"