Files
wehub-resource-sync 19ce5adb69
CI / Test (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Type Check (push) Has been cancelled
CI / Docker Tests (push) Has been cancelled
CI / Build (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:46:45 +08:00

16 lines
374 B
Python

"""PentestGPT - AI-Powered Penetration Testing Assistant."""
__version__ = "1.0.0"
__author__ = "Gelei Deng"
__license__ = "MIT"
from pentestgpt.core.config import PentestGPTConfig, load_config
from pentestgpt.core.pipeline import PipelineMode, PipelineOrchestrator
__all__ = [
"PentestGPTConfig",
"PipelineMode",
"PipelineOrchestrator",
"load_config",
]