-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathlmao_chatgpt.json
73 lines (56 loc) · 3 KB
/
lmao_chatgpt.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"__comment01__": "Original config: <https://github.com/F33RNI/LlM-Api-Open/blob/main/config.json>",
"__comment02__": "File for loading and saving cookies. Install cookie editor extension, for example:",
"__comment03__": "<https://chrome.google.com/webstore/detail/cookie-editor/hlkenndednhfkekhgcdicdfddnkalmdm>",
"__comment04__": "Go to <https://chat.openai.com/> and ask ChatGPT about something",
"__comment05__": "Open the extension, click Export on the bottom right, then Export as JSON",
"__comment06__": "(This saves your cookies to clipboard). Create a new .json file and paste cookies into it",
"__comment07__": "save file and specify path to it here. File also must have write permissions",
"cookies_file": "ChatGPT_cookies.json",
"__comment08__": "Path to browser executable or empty to auto-detect (ex. /usr/bin/google-chrome-stable)",
"browser_executable_path": "",
"__comment09__": "Major version of browser to pass as version_main argument or null to auto-detect (ex. 122)",
"version_main_manual": null,
"__comment10__": "Path to driver executable to pass as driver_executable_path argument or empty for auto",
"__comment11__": "It's recommended ot leave this empty",
"driver_executable_path": "",
"__comment12__": "Set to true to enable proxy",
"proxy_enabled": false,
"__comment13__": "Proxy host (ip) as string",
"proxy_host": "123.45.67.89",
"__comment14__": "Proxy port as integer",
"proxy_port": 8080,
"__comment15__": "Proxy username or empty",
"proxy_user": "",
"__comment16__": "Proxy password or empty",
"proxy_password": "",
"__comment17__": "ChatGPT Web page address",
"base_url": "https://chat.openai.com/",
"__comment18__": "Start browser in headless mode (without GUI)",
"headless": true,
"__comment19__": "Chrome arguments",
"chrome_options": [
"--disable-infobars",
"--ignore-ssl-errors=yes",
"--ignore-certificate-errors",
"--disable-default-apps",
"--disable-notifications",
"--disable-popup-window",
"--no-sandbox",
"--auto-open-devtools-for-tabs",
"--dns-prefetch-disable",
"--disable-gpu",
"--window-size=1920x960"
],
"__comment20__": "--headless= argument. Leave empty to use default value",
"headless_mode": "old",
"__comment21__": "Time (s) for automatically refresh page if no new prompts or responses (to update session)",
"__comment22__": "Set to 0 to disable auto-refresher",
"auto_refresh_interval": 120,
"__comment23__": "User agent to prevent detection of headless chrome. Leave empty to disable it",
"user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36",
"__comment24__": "Response timeout (in seconds)",
"timeout_seconds": 120,
"__comment25__": "How often each user can send requests to this module (specify 0 to remove the restriction)",
"user_cooldown_seconds": 0
}