diff --git a/config/chatgpt_config_sample.py b/config/chatgpt_config_sample.py new file mode 100644 index 0000000..22631b0 --- /dev/null +++ b/config/chatgpt_config_sample.py @@ -0,0 +1,11 @@ +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