-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
59 lines (52 loc) · 1.47 KB
/
config.js
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
/*
* https://rentry.org/teralomaniac_clewd
* https://github.com/teralomaniac/clewd
*/
// SET YOUR COOKIE BELOW
module.exports = {
"Cookie": "SET YOUR COOKIE HERE",
"CookieArray": [],
"Ip": "127.0.0.1",
"Port": 8444,
"BufferSize": 1,
"SystemInterval": 3,
"padtxt_placeholder": "",
"PersonalityFormat": "{{CHAR}}'s personality: {{PERSONALITY}}",
"ScenarioFormat": "Dialogue scenario: {{SCENARIO}}",
"Settings": {
"RenewAlways": true,
"RetryRegenerate": false,
"PromptExperiments": true,
"SystemExperiments": true,
"PreventImperson": false,
"AllSamples": false,
"NoSamples": false,
"StripAssistant": false,
"StripHuman": false,
"PassParams": false,
"ClearFlags": true,
"PreserveChats": true,
"LogMessages": true,
"FullColon": true,
"padtxt": 15000,
"xmlPlot": true,
"localtunnel": false,
"Superfetch": false
},
"SuperfetchHost": "localhost",
"SuperfetchPort": 8443,
"SuperfetchTimeout": 120
}
/*
BufferSize
* How many characters will be buffered before the AI types once
* lower = less chance of `PreventImperson` working properly
---
SystemInterval
* How many messages until `SystemExperiments alternates`
---
Other settings
* https://gitgud.io/ahsk/clewd/#defaults
* and
* https://gitgud.io/ahsk/clewd/-/blob/master/CHANGELOG.md
*/