mirror of
https://github.com/weyne85/PentestGPT.git
synced 2025-10-29 16:58:59 +00:00
12 lines
250 B
Python
12 lines
250 B
Python
import dataclasses
|
|
|
|
|
|
@dataclasses.dataclass
|
|
class ChatGPTConfig:
|
|
model: str = "text-davinci-002-render-sha"
|
|
_puid: str = ""
|
|
cf_clearance: str = ""
|
|
session_token: str = ""
|
|
error_wait_time: float = 20
|
|
is_debugging: bool = False
|