sillytavern 1.10.7 → 1.10.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/default/settings.json +2 -2
- package/default/user.css +1 -0
- package/package.json +4 -1
- package/post-install.js +1 -0
- package/public/context/Adventure.json +1 -2
- package/public/css/character-group-overlay.css +105 -0
- package/public/css/extensions-panel.css +2 -6
- package/public/css/loader.css +25 -0
- package/public/css/st-tailwind.css +70 -9
- package/public/css/tags.css +4 -1
- package/public/css/toggle-dependent.css +6 -1
- package/public/css/user.css +1 -0
- package/public/css/world-info.css +1 -1
- package/public/i18n.json +14 -26
- package/public/img/aphrodite.svg +71 -0
- package/public/img/mancer.svg +3 -0
- package/public/img/novel.svg +2 -2
- package/public/index.html +896 -1321
- package/public/script.js +714 -378
- package/public/scripts/BulkEditOverlay.js +648 -0
- package/public/scripts/PromptManager.js +27 -9
- package/public/scripts/RossAscends-mods.js +23 -15
- package/public/scripts/bulk-edit.js +32 -12
- package/public/scripts/cfg-scale.js +6 -6
- package/public/scripts/chats.js +73 -0
- package/public/scripts/extensions/caption/index.js +152 -44
- package/public/scripts/extensions/expressions/index.js +11 -14
- package/public/scripts/extensions/quick-reply/index.js +10 -4
- package/public/scripts/extensions/regex/editor.html +6 -2
- package/public/scripts/extensions/regex/engine.js +15 -10
- package/public/scripts/extensions/regex/index.js +29 -4
- package/public/scripts/extensions/regex/scriptTemplate.html +5 -0
- package/public/scripts/extensions/regex/style.css +35 -1
- package/public/scripts/extensions/stable-diffusion/index.js +242 -52
- package/public/scripts/extensions/stable-diffusion/manifest.json +2 -1
- package/public/scripts/extensions/stable-diffusion/settings.html +28 -10
- package/public/scripts/extensions/token-counter/index.js +98 -12
- package/public/scripts/extensions/token-counter/style.css +6 -0
- package/public/scripts/extensions/tts/index.js +118 -29
- package/public/scripts/extensions/tts/system.js +13 -7
- package/public/scripts/extensions.js +64 -28
- package/public/scripts/filters.js +22 -11
- package/public/scripts/group-chats.js +13 -10
- package/public/scripts/kai-settings.js +10 -13
- package/public/scripts/loader.js +28 -0
- package/public/scripts/mancer-settings.js +19 -37
- package/public/scripts/nai-settings.js +14 -12
- package/public/scripts/openai.js +216 -102
- package/public/scripts/personas.js +23 -5
- package/public/scripts/power-user.js +422 -36
- package/public/scripts/preset-manager.js +1 -0
- package/public/scripts/slash-commands.js +181 -9
- package/public/scripts/tags.js +108 -56
- package/public/scripts/templates/macros.html +24 -16
- package/public/scripts/textgen-settings.js +173 -82
- package/public/scripts/tokenizers.js +92 -14
- package/public/scripts/utils.js +28 -1
- package/public/scripts/variables.js +120 -0
- package/public/scripts/world-info.js +70 -18
- package/public/settings.json +2 -2
- package/public/style.css +218 -134
- package/server.js +317 -257
- package/src/ai_horde/index.d.ts +2 -0
- package/src/extensions.js +0 -6
- package/src/horde.js +52 -0
- package/src/novelai.js +8 -1
- package/src/openai.js +104 -0
- package/src/sentencepiece/mistral.model +0 -0
- package/src/tokenizers.js +164 -37
- package/src/translate.js +4 -1
- package/src/util.js +22 -0
- package/src/validator/TavernCardValidator.js +127 -0
- /package/src/sentencepiece/{tokenizer.model → llama.model} +0 -0
package/default/settings.json
CHANGED
|
@@ -49,7 +49,6 @@
|
|
|
49
49
|
"ban_eos_token": false,
|
|
50
50
|
"skip_special_tokens": true,
|
|
51
51
|
"streaming": false,
|
|
52
|
-
"streaming_url": "ws://127.0.0.1:5005/api/v1/stream",
|
|
53
52
|
"mirostat_mode": 0,
|
|
54
53
|
"mirostat_tau": 5,
|
|
55
54
|
"mirostat_eta": 0.1,
|
|
@@ -164,6 +163,8 @@
|
|
|
164
163
|
"custom_stopping_strings_macro": true,
|
|
165
164
|
"fuzzy_search": true,
|
|
166
165
|
"encode_tags": false,
|
|
166
|
+
"enableLabMode": false,
|
|
167
|
+
"enableZenSliders": false,
|
|
167
168
|
"ui_mode": 1
|
|
168
169
|
},
|
|
169
170
|
"extension_settings": {
|
|
@@ -405,7 +406,6 @@
|
|
|
405
406
|
"typical": 1,
|
|
406
407
|
"tfs": 1,
|
|
407
408
|
"rep_pen_slope": 0,
|
|
408
|
-
"single_line": false,
|
|
409
409
|
"streaming_kobold": false,
|
|
410
410
|
"sampler_order": [
|
|
411
411
|
6,
|
package/default/user.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* Put custom styles here. */
|
package/package.json
CHANGED
|
@@ -38,6 +38,9 @@
|
|
|
38
38
|
"overrides": {
|
|
39
39
|
"parse-bmfont-xml": {
|
|
40
40
|
"xml2js": "^0.5.0"
|
|
41
|
+
},
|
|
42
|
+
"vectra": {
|
|
43
|
+
"openai": "^4.17.0"
|
|
41
44
|
}
|
|
42
45
|
},
|
|
43
46
|
"name": "sillytavern",
|
|
@@ -47,7 +50,7 @@
|
|
|
47
50
|
"type": "git",
|
|
48
51
|
"url": "https://github.com/SillyTavern/SillyTavern.git"
|
|
49
52
|
},
|
|
50
|
-
"version": "1.10.
|
|
53
|
+
"version": "1.10.8",
|
|
51
54
|
"scripts": {
|
|
52
55
|
"start": "node server.js",
|
|
53
56
|
"start-multi": "node server.js --disableCsrf",
|
package/post-install.js
CHANGED
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
|
|
2
|
+
#rm_print_characters_block.group_overlay_mode_select .character_select {
|
|
3
|
+
transition: background-color 0.4s ease;
|
|
4
|
+
margin-bottom: 1px;
|
|
5
|
+
background-color: rgba(170, 170, 170, 0.15);
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
#rm_print_characters_block.group_overlay_mode_select .bogus_folder_select,
|
|
9
|
+
#rm_print_characters_block.group_overlay_mode_select .group_select {
|
|
10
|
+
cursor: auto;
|
|
11
|
+
filter: saturate(0.3);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
#rm_print_characters_block.group_overlay_mode_select .bogus_folder_select:hover,
|
|
15
|
+
#rm_print_characters_block.group_overlay_mode_select .group_select:hover {
|
|
16
|
+
background: none;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
#rm_print_characters_block.group_overlay_mode_select .character_select input.bulk_select_checkbox {
|
|
20
|
+
display: none !important;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
#rm_print_characters_block.group_overlay_mode_select .character_select.character_selected {
|
|
24
|
+
background-color: var(--SmartThemeQuoteColor);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
#rm_print_characters_block.group_overlay_mode_select .character_select .bulk_select_checkbox {
|
|
28
|
+
visibility: hidden;
|
|
29
|
+
height: 0 !important;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
#character_context_menu.hidden { display: none; }
|
|
33
|
+
#character_context_menu {
|
|
34
|
+
position: absolute;
|
|
35
|
+
padding: 3px;
|
|
36
|
+
z-index: 9998;
|
|
37
|
+
background-color: var(--black90a);
|
|
38
|
+
border: 1px solid var(--black90a);
|
|
39
|
+
border-radius: 10px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
#character_context_menu ul li button {
|
|
43
|
+
border: 0;
|
|
44
|
+
border-bottom-color: currentcolor;
|
|
45
|
+
color: var(--SmartThemeQuoteColor);
|
|
46
|
+
background-color: transparent;
|
|
47
|
+
font-weight: bold;
|
|
48
|
+
font-size: 1em;
|
|
49
|
+
padding: 0.5em;
|
|
50
|
+
border-bottom: 1px dotted var(--SmartThemeQuoteColor);
|
|
51
|
+
width: 100%;
|
|
52
|
+
cursor: pointer;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
#character_context_menu ul li button:hover {
|
|
56
|
+
background-color: var(--SmartThemeBlurTintColor);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
#character_context_menu ul li:last-child button {
|
|
60
|
+
border-bottom: 0;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
#character_context_menu ul li #character_context_menu_delete {
|
|
64
|
+
color: var(--fullred);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
#character_context_menu ul {
|
|
68
|
+
list-style-type: none;
|
|
69
|
+
padding: 0;
|
|
70
|
+
margin: 0;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
#character_context_menu .character_context_menu_separator {
|
|
74
|
+
height: 1px;
|
|
75
|
+
background-color: var(--SmartThemeBotMesBlurTintColor);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
#character_context_menu li:hover {
|
|
79
|
+
background-color: var(--SmartThemeBotMesBlurTintColor);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
#bulkEditButton.bulk_edit_overlay_active {
|
|
83
|
+
color: var(--golden);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
#bulk_tag_shadow_popup {
|
|
87
|
+
backdrop-filter: blur(calc(var(--SmartThemeBlurStrength) * 2));
|
|
88
|
+
-webkit-backdrop-filter: blur(calc(var(--SmartThemeBlurStrength) * 2));
|
|
89
|
+
background-color: var(--black30a);
|
|
90
|
+
position: absolute;
|
|
91
|
+
width: 100%;
|
|
92
|
+
height: 100vh;
|
|
93
|
+
height: 100svh;
|
|
94
|
+
z-index: 9998;
|
|
95
|
+
top: 0;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
#bulk_tag_shadow_popup #bulk_tag_popup {
|
|
99
|
+
padding: 1em;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
#bulk_tag_shadow_popup #bulk_tag_popup #dialogue_popup_controls .menu_button {
|
|
103
|
+
width: 100px;
|
|
104
|
+
padding: 0.25em;
|
|
105
|
+
}
|
|
@@ -3,11 +3,6 @@
|
|
|
3
3
|
display: block;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
-
#extensions_status {
|
|
7
|
-
/* margin-bottom: 10px; */
|
|
8
|
-
font-weight: 700;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
6
|
.extensions_block input[type="submit"]:hover {
|
|
12
7
|
background-color: green;
|
|
13
8
|
}
|
|
@@ -103,8 +98,9 @@ input.extension_missing[type="checkbox"] {
|
|
|
103
98
|
}
|
|
104
99
|
|
|
105
100
|
/** LEFT COLUMN **/
|
|
101
|
+
/* Must be always on top */
|
|
106
102
|
#extensions_settings>#assets_ui {
|
|
107
|
-
order: 1;
|
|
103
|
+
order: -1;
|
|
108
104
|
}
|
|
109
105
|
|
|
110
106
|
#extensions_settings>.expression_settings {
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
#loader {
|
|
2
|
+
position: fixed;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
top: 0;
|
|
6
|
+
left: 0;
|
|
7
|
+
display: flex;
|
|
8
|
+
align-items: center;
|
|
9
|
+
justify-content: center;
|
|
10
|
+
z-index: 999999;
|
|
11
|
+
width: 100vw;
|
|
12
|
+
height: 100vh;
|
|
13
|
+
width: 100svw;
|
|
14
|
+
height: 100svh;
|
|
15
|
+
background-color: var(--SmartThemeBlurTintColor);
|
|
16
|
+
/*for some reason the full screen blur does not work on iOS*/
|
|
17
|
+
backdrop-filter: blur(30px);
|
|
18
|
+
color: var(--SmartThemeBodyColor);
|
|
19
|
+
opacity: 1;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
#load-spinner {
|
|
23
|
+
transition: all 300ms ease-out;
|
|
24
|
+
opacity: 1;
|
|
25
|
+
}
|
|
@@ -62,23 +62,24 @@
|
|
|
62
62
|
|
|
63
63
|
.margin-bot-10px,
|
|
64
64
|
.marginBot10 {
|
|
65
|
-
margin-bottom: 10px;
|
|
65
|
+
margin-bottom: 10px !important;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
.marginTop10 {
|
|
69
|
-
margin-top: 10px;
|
|
69
|
+
margin-top: 10px !important;
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
.marginBot5 {
|
|
73
|
-
margin-bottom: 5px;
|
|
73
|
+
margin-bottom: 5px !important;
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
.marginTop5 {
|
|
77
|
-
margin-top: 5px;
|
|
77
|
+
margin-top: 5px !important;
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
.marginTopBot5 {
|
|
81
|
-
margin: 5px
|
|
81
|
+
margin-top: 5px !important;
|
|
82
|
+
margin-bottom: 5px !important;
|
|
82
83
|
}
|
|
83
84
|
|
|
84
85
|
.margin5 {
|
|
@@ -105,10 +106,18 @@
|
|
|
105
106
|
align-items: flex-end !important;
|
|
106
107
|
}
|
|
107
108
|
|
|
109
|
+
.alignItemsBaseline {
|
|
110
|
+
align-items: baseline !important;
|
|
111
|
+
}
|
|
112
|
+
|
|
108
113
|
.alignSelfStart {
|
|
109
114
|
align-self: start;
|
|
110
115
|
}
|
|
111
116
|
|
|
117
|
+
.gap0 {
|
|
118
|
+
gap: 0 !important;
|
|
119
|
+
}
|
|
120
|
+
|
|
112
121
|
.gap3px {
|
|
113
122
|
gap: 3px !important;
|
|
114
123
|
}
|
|
@@ -121,6 +130,14 @@
|
|
|
121
130
|
gap: 10px !important;
|
|
122
131
|
}
|
|
123
132
|
|
|
133
|
+
.gap10h20v {
|
|
134
|
+
gap: 10px 20px !important;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.gap10h5v {
|
|
138
|
+
gap: 5px 10px !important;
|
|
139
|
+
}
|
|
140
|
+
|
|
124
141
|
.wide10pMinFit {
|
|
125
142
|
width: 10%;
|
|
126
143
|
min-width: fit-content;
|
|
@@ -150,6 +167,10 @@
|
|
|
150
167
|
box-shadow: none !important;
|
|
151
168
|
}
|
|
152
169
|
|
|
170
|
+
.height100p {
|
|
171
|
+
height: 100%;
|
|
172
|
+
}
|
|
173
|
+
|
|
153
174
|
.height100pSpaceEvenly {
|
|
154
175
|
align-content: space-evenly;
|
|
155
176
|
height: 100%;
|
|
@@ -208,6 +229,22 @@
|
|
|
208
229
|
display: flex;
|
|
209
230
|
}
|
|
210
231
|
|
|
232
|
+
.flexBasis50p {
|
|
233
|
+
flex-basis: 50%
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.flexBasis25p {
|
|
237
|
+
flex-basis: 25%
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.flexBasis200px {
|
|
241
|
+
flex-basis: 200px
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.flexBasis48p {
|
|
245
|
+
flex-basis: 48%
|
|
246
|
+
}
|
|
247
|
+
|
|
211
248
|
.flex-container {
|
|
212
249
|
display: flex;
|
|
213
250
|
gap: 5px;
|
|
@@ -222,6 +259,10 @@
|
|
|
222
259
|
flex-grow: 1;
|
|
223
260
|
}
|
|
224
261
|
|
|
262
|
+
.flexShrink {
|
|
263
|
+
flex-shrink: 1
|
|
264
|
+
}
|
|
265
|
+
|
|
225
266
|
.flexnowrap {
|
|
226
267
|
flex-wrap: nowrap;
|
|
227
268
|
}
|
|
@@ -300,10 +341,6 @@
|
|
|
300
341
|
flex: 50%;
|
|
301
342
|
}
|
|
302
343
|
|
|
303
|
-
.wide50p {
|
|
304
|
-
width: 50% !important;
|
|
305
|
-
}
|
|
306
|
-
|
|
307
344
|
.wide25p {
|
|
308
345
|
width: 25%;
|
|
309
346
|
}
|
|
@@ -387,6 +424,10 @@
|
|
|
387
424
|
display: none;
|
|
388
425
|
}
|
|
389
426
|
|
|
427
|
+
.hoverglow {
|
|
428
|
+
transition: opacity 200ms;
|
|
429
|
+
}
|
|
430
|
+
|
|
390
431
|
.hoverglow:hover {
|
|
391
432
|
opacity: 1 !important;
|
|
392
433
|
cursor: pointer;
|
|
@@ -417,6 +458,10 @@ textarea:disabled {
|
|
|
417
458
|
border: 1px solid purple !important;
|
|
418
459
|
}
|
|
419
460
|
|
|
461
|
+
.fontsize120p {
|
|
462
|
+
font-size: calc(var(--mainFontSize) * 1.2) !important;
|
|
463
|
+
}
|
|
464
|
+
|
|
420
465
|
.fontsize80p {
|
|
421
466
|
font-size: calc(var(--mainFontSize) * 0.8) !important;
|
|
422
467
|
}
|
|
@@ -455,6 +500,22 @@ textarea:disabled {
|
|
|
455
500
|
gap: 10px;
|
|
456
501
|
}
|
|
457
502
|
|
|
503
|
+
.opacity50p {
|
|
504
|
+
opacity: 0.5
|
|
505
|
+
}
|
|
506
|
+
|
|
458
507
|
.opacity1 {
|
|
459
508
|
opacity: 1 !important;
|
|
460
509
|
}
|
|
510
|
+
|
|
511
|
+
.circleborder30px {
|
|
512
|
+
right: 30px;
|
|
513
|
+
top: 10px;
|
|
514
|
+
position: absolute;
|
|
515
|
+
border: 1px solid var(--SmartThemeBodyColor);
|
|
516
|
+
border-radius: 100%;
|
|
517
|
+
aspect-ratio: 1 / 1;
|
|
518
|
+
height: 30px;
|
|
519
|
+
text-align: center;
|
|
520
|
+
padding: 5px;
|
|
521
|
+
}
|
package/public/css/tags.css
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
#bulk_tags_div,
|
|
1
2
|
#tags_div {
|
|
2
3
|
min-width: 0;
|
|
3
4
|
}
|
|
@@ -12,7 +13,7 @@
|
|
|
12
13
|
.tag_view_item {
|
|
13
14
|
display: flex;
|
|
14
15
|
flex-direction: row;
|
|
15
|
-
align-items:
|
|
16
|
+
align-items: center;
|
|
16
17
|
gap: 10px;
|
|
17
18
|
margin-bottom: 5px;
|
|
18
19
|
}
|
|
@@ -86,10 +87,12 @@
|
|
|
86
87
|
align-items: flex-end;
|
|
87
88
|
}
|
|
88
89
|
|
|
90
|
+
#bulkTagsList,
|
|
89
91
|
#tagList.tags {
|
|
90
92
|
margin: 5px 0;
|
|
91
93
|
}
|
|
92
94
|
|
|
95
|
+
#bulkTagsList,
|
|
93
96
|
#tagList .tag {
|
|
94
97
|
opacity: 0.6;
|
|
95
98
|
}
|
|
@@ -28,6 +28,7 @@ body.charListGrid #rm_print_characters_block {
|
|
|
28
28
|
align-content: flex-start;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
+
body.charListGrid #rm_print_characters_block .bogus_folder_select,
|
|
31
32
|
body.charListGrid #rm_print_characters_block .character_select {
|
|
32
33
|
width: 30%;
|
|
33
34
|
align-items: flex-start;
|
|
@@ -37,6 +38,7 @@ body.charListGrid #rm_print_characters_block .character_select {
|
|
|
37
38
|
max-width: 100px;
|
|
38
39
|
}
|
|
39
40
|
|
|
41
|
+
body.charListGrid #rm_print_characters_block .bogus_folder_select .ch_name,
|
|
40
42
|
body.charListGrid #rm_print_characters_block .character_select .ch_name,
|
|
41
43
|
body.charListGrid #rm_print_characters_block .group_select .ch_name {
|
|
42
44
|
width: 100%;
|
|
@@ -45,10 +47,12 @@ body.charListGrid #rm_print_characters_block .group_select .ch_name {
|
|
|
45
47
|
font-size: calc(var(--mainFontSize) * .8);
|
|
46
48
|
}
|
|
47
49
|
|
|
50
|
+
body.charListGrid #rm_print_characters_block .bogus_folder_select .character_name_block,
|
|
48
51
|
body.charListGrid #rm_print_characters_block .character_select .character_name_block {
|
|
49
52
|
width: 100%;
|
|
50
53
|
}
|
|
51
54
|
|
|
55
|
+
body.charListGrid #rm_print_characters_block .bogus_folder_select .character_select_container,
|
|
52
56
|
body.charListGrid #rm_print_characters_block .character_select .character_select_container {
|
|
53
57
|
width: 100%;
|
|
54
58
|
justify-content: center;
|
|
@@ -68,6 +72,7 @@ body.charListGrid #rm_print_characters_block .group_select .group_name_block {
|
|
|
68
72
|
width: 100%;
|
|
69
73
|
}
|
|
70
74
|
|
|
75
|
+
body.charListGrid #rm_print_characters_block .bogus_folder_counter_block,
|
|
71
76
|
body.charListGrid #rm_print_characters_block .ch_description,
|
|
72
77
|
body.charListGrid #rm_print_characters_block .tags_inline,
|
|
73
78
|
body.charListGrid #rm_print_characters_block .character_version,
|
|
@@ -352,4 +357,4 @@ body.expandMessageActions .mes .mes_buttons .extraMesButtons {
|
|
|
352
357
|
|
|
353
358
|
body.expandMessageActions .mes .mes_buttons .extraMesButtonsHint {
|
|
354
359
|
display: none !important;
|
|
355
|
-
}
|
|
360
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* Put custom styles here. */
|
package/public/i18n.json
CHANGED
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
"Novel AI Model": "NovelAI 模型",
|
|
120
120
|
"No connection": "无连接",
|
|
121
121
|
"oobabooga/text-generation-webui": "",
|
|
122
|
-
"Make sure you run it with": "确保启动时包含 --
|
|
122
|
+
"Make sure you run it with": "确保启动时包含 --extensions openai 参数",
|
|
123
123
|
"Blocking API url": "阻塞式 API 地址",
|
|
124
124
|
"Streaming API url": "流式传输 API 地址",
|
|
125
125
|
"to get your OpenAI API key.": "获取您的 OpenAI API 密钥。",
|
|
@@ -172,8 +172,6 @@
|
|
|
172
172
|
"Token Budget": "Token 预算",
|
|
173
173
|
"budget": "预算",
|
|
174
174
|
"Recursive scanning": "递归扫描",
|
|
175
|
-
"Soft Prompt": "软提示",
|
|
176
|
-
"About soft prompts": "关于软提示",
|
|
177
175
|
"None": "没有",
|
|
178
176
|
"User Settings": "聊天窗口设置",
|
|
179
177
|
"UI Customization": "聊天窗口定制",
|
|
@@ -469,7 +467,7 @@
|
|
|
469
467
|
"Verifies your API connection by sending a short test message. Be aware that you'll be credited for it!": "通过发送一个短测试消息验证您的API连接。请注意您会获得相应的积分!",
|
|
470
468
|
"Create New": "创建新的",
|
|
471
469
|
"Edit": "编辑",
|
|
472
|
-
"World Info
|
|
470
|
+
"World Info": "世界背景",
|
|
473
471
|
"Locked = World Editor will stay open": "锁定=世界编辑器将保持打开状态",
|
|
474
472
|
"Entries can activate other entries by mentioning their keywords": "条目可以通过提及其关键字来激活其他条目",
|
|
475
473
|
"Lookup for the entry keys in the context will respect the case": "在上下文中查找条目键将遵守大小写",
|
|
@@ -672,7 +670,7 @@
|
|
|
672
670
|
"Novel AI Model": "NovelAI モデル",
|
|
673
671
|
"No connection": "接続なし",
|
|
674
672
|
"oobabooga/text-generation-webui": "",
|
|
675
|
-
"Make sure you run it with": "必ず --
|
|
673
|
+
"Make sure you run it with": "必ず --extensions openai の引数を含めて起動してください",
|
|
676
674
|
"Blocking API url": "ブロッキング API URL",
|
|
677
675
|
"Streaming API url": "ストリーミング API URL",
|
|
678
676
|
"to get your OpenAI API key.": "あなたの OpenAI API キーを取得するために。",
|
|
@@ -724,8 +722,6 @@
|
|
|
724
722
|
"Token Budget": "トークン予算",
|
|
725
723
|
"budget": "予算",
|
|
726
724
|
"Recursive scanning": "再帰的スキャン",
|
|
727
|
-
"Soft Prompt": "ソフトプロンプト",
|
|
728
|
-
"About soft prompts": "ソフトプロンプトについて",
|
|
729
725
|
"None": "なし",
|
|
730
726
|
"User Settings": "ユーザー設定",
|
|
731
727
|
"UI Customization": "UIカスタマイズ",
|
|
@@ -1023,7 +1019,7 @@
|
|
|
1023
1019
|
"Verifies your API connection by sending a short test message. Be aware that you'll be credited for it!": "NEEDS TRANSLATION",
|
|
1024
1020
|
"Create New": "NEEDS TRANSLATION",
|
|
1025
1021
|
"Edit": "NEEDS TRANSLATION",
|
|
1026
|
-
"World Info
|
|
1022
|
+
"World Info": "NEEDS TRANSLATION",
|
|
1027
1023
|
"Locked = World Editor will stay open": "NEEDS TRANSLATION",
|
|
1028
1024
|
"Entries can activate other entries by mentioning their keywords": "NEEDS TRANSLATION",
|
|
1029
1025
|
"Lookup for the entry keys in the context will respect the case": "NEEDS TRANSLATION",
|
|
@@ -1227,7 +1223,7 @@
|
|
|
1227
1223
|
"Novel AI Model": "NovelAI 모델",
|
|
1228
1224
|
"No connection": "접속 실패",
|
|
1229
1225
|
"oobabooga/text-generation-webui": "oobabooga/text-generation-webui",
|
|
1230
|
-
"Make sure you run it with": "--
|
|
1226
|
+
"Make sure you run it with": "--extensions openai 인수를 반드시 사용해야 합니다.",
|
|
1231
1227
|
"Blocking API url": "API URL을 막는 중",
|
|
1232
1228
|
"Streaming API url": "API URL에서 스트리밍 중",
|
|
1233
1229
|
"OpenAI Model": "OpenAI 모델",
|
|
@@ -1278,8 +1274,6 @@
|
|
|
1278
1274
|
"Token Budget": "토큰 예산",
|
|
1279
1275
|
"budget": "예산",
|
|
1280
1276
|
"Recursive scanning": "되풀이 검색",
|
|
1281
|
-
"Soft Prompt": "Soft Prompt",
|
|
1282
|
-
"About soft prompts": "Soft prompt란?",
|
|
1283
1277
|
"None": "없음",
|
|
1284
1278
|
"User Settings": "사용자 설정",
|
|
1285
1279
|
"UI Customization": "UI 꾸미기",
|
|
@@ -1581,7 +1575,7 @@
|
|
|
1581
1575
|
"Verifies your API connection by sending a short test message. Be aware that you'll be credited for it!": "짧은 시험 메시지를 보내서 API 접속 상태를 확인합니다. 서비스 사용으로 취급됩니다!",
|
|
1582
1576
|
"Create New": "새로 만들기",
|
|
1583
1577
|
"Edit": "수정하기",
|
|
1584
|
-
"World Info
|
|
1578
|
+
"World Info": "세계관",
|
|
1585
1579
|
"Locked = World Editor will stay open": "세계관 설정 패널 열림을 고정합니다",
|
|
1586
1580
|
"Entries can activate other entries by mentioning their keywords": "설정 내용에 다른 설정의 키워드가 있다면 연속으로 발동하게 합니다",
|
|
1587
1581
|
"Lookup for the entry keys in the context will respect the case": "설정 발동 키워드가 대소문자를 구분합니다",
|
|
@@ -1803,7 +1797,7 @@
|
|
|
1803
1797
|
"Novel AI Model": "Модель NovelAI",
|
|
1804
1798
|
"If you are using:": "Если вы используете:",
|
|
1805
1799
|
"oobabooga/text-generation-webui": "",
|
|
1806
|
-
"Make sure you run it with": "Убедитесь, что при запуске указали аргумент --
|
|
1800
|
+
"Make sure you run it with": "Убедитесь, что при запуске указали аргумент --extensions openai",
|
|
1807
1801
|
"Mancer AI": "",
|
|
1808
1802
|
"Use API key (Only required for Mancer)": "Нажмите на ячейку (и добавьте свой API ключ!):",
|
|
1809
1803
|
"Blocking API url": "Блокирующий API url",
|
|
@@ -1890,8 +1884,6 @@
|
|
|
1890
1884
|
"Token Budget": "Объем токенов",
|
|
1891
1885
|
"budget": "объем",
|
|
1892
1886
|
"Recursive scanning": "Рекурсивное сканирование",
|
|
1893
|
-
"Soft Prompt": "Мягкая инструкция",
|
|
1894
|
-
"About soft prompts": "О мягких инструкциях",
|
|
1895
1887
|
"None": "Отсутствует",
|
|
1896
1888
|
"User Settings": "Настройки пользователя",
|
|
1897
1889
|
"UI Mode": "Режим интерфейса",
|
|
@@ -2207,7 +2199,7 @@
|
|
|
2207
2199
|
"Verifies your API connection by sending a short test message. Be aware that you'll be credited for it!": "Подверждает ваше соединение к API. Знайте, что за это снимут деньги с вашего счета.",
|
|
2208
2200
|
"Create New": "Создать новое",
|
|
2209
2201
|
"Edit": "Изменить",
|
|
2210
|
-
"World Info
|
|
2202
|
+
"World Info": "Информация о Мире",
|
|
2211
2203
|
"Locked = World Editor will stay open": "Закреплено = Редактирование Мира останется открытым",
|
|
2212
2204
|
"Entries can activate other entries by mentioning their keywords": "Записи могут активировать другие записи если в них содержаться ключевые слова",
|
|
2213
2205
|
"Lookup for the entry keys in the context will respect the case": "Большая буква имеет значение при активации ключевого слова",
|
|
@@ -2413,7 +2405,7 @@
|
|
|
2413
2405
|
"Krake": "Krake",
|
|
2414
2406
|
"No connection": "Nessuna connessione",
|
|
2415
2407
|
"oobabooga/text-generation-webui": "oobabooga/text-generation-webui",
|
|
2416
|
-
"Make sure you run it with": "assicurati di farlo partire con",
|
|
2408
|
+
"Make sure you run it with": "assicurati di farlo partire con --extensions openai",
|
|
2417
2409
|
"Blocking API url": "Blocca l'indirizzo API",
|
|
2418
2410
|
"Streaming API url": "Streaming dell'indirizzo API",
|
|
2419
2411
|
"to get your OpenAI API key.": "per ottenere la tua chiave API di OpenAI.",
|
|
@@ -2469,8 +2461,6 @@
|
|
|
2469
2461
|
"Token Budget": "Budget per i Token",
|
|
2470
2462
|
"budget": "budget",
|
|
2471
2463
|
"Recursive scanning": "Analisi ricorsiva",
|
|
2472
|
-
"Soft Prompt": "Prompt leggero",
|
|
2473
|
-
"About soft prompts": "Riguardo i prompt leggeri",
|
|
2474
2464
|
"None": "None",
|
|
2475
2465
|
"User Settings": "Settaggi utente",
|
|
2476
2466
|
"UI Customization": "Personalizzazione UI",
|
|
@@ -2767,7 +2757,7 @@
|
|
|
2767
2757
|
"Verifies your API connection by sending a short test message. Be aware that you'll be credited for it!": "Verifica la connessione all'API inviando un breve messaggio. Devi comprendere che il messaggio verrà addebitato come tutti gli altri!",
|
|
2768
2758
|
"Create New": "Crea nuovo",
|
|
2769
2759
|
"Edit": "Edita",
|
|
2770
|
-
"World Info
|
|
2760
|
+
"World Info": "'Info Mondo'",
|
|
2771
2761
|
"Locked = World Editor will stay open": "Se clicchi il lucchetto, l'editor del mondo rimarrà aperto",
|
|
2772
2762
|
"Entries can activate other entries by mentioning their keywords": "Le voci possono attivare altre voci menzionando le loro parole chiave",
|
|
2773
2763
|
"Lookup for the entry keys in the context will respect the case": "Fai attenzione alle parole chiave usate, esse rispetteranno le maiuscole",
|
|
@@ -2963,7 +2953,7 @@
|
|
|
2963
2953
|
"Show tags in responses": "Mostra i tag nelle risposte",
|
|
2964
2954
|
"Story String": "Stringa narrativa",
|
|
2965
2955
|
"Text Adventure": "Avventura testuale",
|
|
2966
|
-
"Text Gen WebUI
|
|
2956
|
+
"Text Gen WebUI presets": "Preset Text Gen WebUI",
|
|
2967
2957
|
"Toggle Panels": "Interruttore pannelli",
|
|
2968
2958
|
"Top A Sampling": "Top A Sampling",
|
|
2969
2959
|
"Top K Sampling": "Top K Sampling",
|
|
@@ -3174,7 +3164,7 @@
|
|
|
3174
3164
|
"Novel AI Model": "NovelAI-model",
|
|
3175
3165
|
"No connection": "Geen verbinding",
|
|
3176
3166
|
"oobabooga/text-generation-webui": "oobabooga/text-generation-webui",
|
|
3177
|
-
"Make sure you run it with": "Zorg ervoor dat je het uitvoert met",
|
|
3167
|
+
"Make sure you run it with": "Zorg ervoor dat je het uitvoert met --extensions openai",
|
|
3178
3168
|
"Blocking API url": "Blokkerende API-url",
|
|
3179
3169
|
"Streaming API url": "Streaming API-url",
|
|
3180
3170
|
"to get your OpenAI API key.": "om je OpenAI API-sleutel te verkrijgen.",
|
|
@@ -3226,8 +3216,6 @@
|
|
|
3226
3216
|
"Token Budget": "Token-budget",
|
|
3227
3217
|
"budget": "budget",
|
|
3228
3218
|
"Recursive scanning": "Recursieve scanning",
|
|
3229
|
-
"Soft Prompt": "Zachte prompt",
|
|
3230
|
-
"About soft prompts": "Over zachte prompts",
|
|
3231
3219
|
"None": "Geen",
|
|
3232
3220
|
"User Settings": "Gebruikersinstellingen",
|
|
3233
3221
|
"UI Customization": "UI-aanpassing",
|
|
@@ -3523,7 +3511,7 @@
|
|
|
3523
3511
|
"Verifies your API connection by sending a short test message. Be aware that you'll be credited for it!": "Verifieert je API-verbinding door een kort testbericht te sturen. Wees je ervan bewust dat je hiervoor wordt gecrediteerd!",
|
|
3524
3512
|
"Create New": "Nieuw aanmaken",
|
|
3525
3513
|
"Edit": "Bewerken",
|
|
3526
|
-
"World Info
|
|
3514
|
+
"World Info": "Wereldinformatie",
|
|
3527
3515
|
"Locked = World Editor will stay open": "Vergrendeld = Wereld Editor blijft open",
|
|
3528
3516
|
"Entries can activate other entries by mentioning their keywords": "Invoeren kunnen andere invoeren activeren door hun trefwoorden te noemen",
|
|
3529
3517
|
"Lookup for the entry keys in the context will respect the case": "Zoeken naar de toetsen van de invoer in de context zal de hoofdlettergevoeligheid respecteren",
|
|
@@ -3727,7 +3715,7 @@
|
|
|
3727
3715
|
"Novel AI Model": "Modelo IA de NovelAI",
|
|
3728
3716
|
"No connection": "Desconectado",
|
|
3729
3717
|
"oobabooga/text-generation-webui": "oobabooga/text-generation-webui",
|
|
3730
|
-
"Make sure you run it with": "Asegúrate de usar el argumento --
|
|
3718
|
+
"Make sure you run it with": "Asegúrate de usar el argumento --extensions openai cuando se ejecute",
|
|
3731
3719
|
"Blocking API url": "API URL",
|
|
3732
3720
|
"Streaming API url": "Streaming API URL",
|
|
3733
3721
|
"to get your OpenAI API key.": "para conseguir tu clave API de OpenAI",
|