mirror of
https://github.com/dongdongunique/EvoSynth.git
synced 2026-06-03 05:28:07 +02:00
20 lines
581 B
Python
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" |