mirror of
https://github.com/weyne85/PentestGPT.git
synced 2025-10-29 16:58:59 +00:00
14 lines
278 B
Python
14 lines
278 B
Python
from utils.chatgpt import ChatGPT
|
|
from config.chatgpt_config import ChatGPTConfig
|
|
|
|
import loguru
|
|
|
|
logger = loguru.logger
|
|
|
|
# format: {name: {description: str, sample_curl: str, sample_response: str}}
|
|
API_description = {}
|
|
|
|
|
|
if __name__ == "__main__":
|
|
chatGPTAgent = ChatGPT()
|