From e1ccd532544c90b851ecf2d12bc7480cd62f14f0 Mon Sep 17 00:00:00 2001 From: Grey_D Date: Sun, 9 Apr 2023 14:25:26 +0800 Subject: [PATCH] upload sample config --- config/chatgpt_config_sample.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 config/chatgpt_config_sample.py 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