docs: ✏️ update readme

This commit is contained in:
Grey_D
2023-04-27 16:06:40 +08:00
parent 5e957b5b1e
commit 83c9b33b35
2 changed files with 2 additions and 1 deletions

View File

@@ -47,7 +47,7 @@ class pentestGPT:
"default": "The user did not specify the input source. You need to summarize based on the contents.\n",
}
def __init__(self, reasoning_model="text-davinci-002-render-sha"):
def __init__(self, reasoning_model="gpt-4"):
self.log_dir = "logs"
self.chatGPTAgent = ChatGPT(ChatGPTConfig())
self.chatGPT4Agent = ChatGPT(ChatGPTConfig(model=reasoning_model))