sillytavern 1.10.4 → 1.10.5
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/.github/ISSUE_TEMPLATE/bug-report.yml +1 -1
- package/.github/ISSUE_TEMPLATE/feature-request.yml +1 -1
- package/.github/workflows/docker-publish.yml +1 -1
- package/Dockerfile +1 -1
- package/default/settings.json +6 -2
- package/docker/docker-entrypoint.sh +1 -1
- package/package.json +2 -1
- package/public/KoboldAI Settings/Ace of Spades.settings +8 -4
- package/public/KoboldAI Settings/Basic Coherence.settings +8 -4
- package/public/KoboldAI Settings/Best Guess.settings +8 -4
- package/public/KoboldAI Settings/Coherent Creativity.settings +9 -5
- package/public/KoboldAI Settings/Deterministic.settings +6 -3
- package/public/KoboldAI Settings/Genesis.settings +8 -4
- package/public/KoboldAI Settings/Godlike.settings +8 -4
- package/public/KoboldAI Settings/Good Winds.settings +8 -4
- package/public/KoboldAI Settings/Liminal Drift.settings +8 -4
- package/public/KoboldAI Settings/Low Rider.settings +8 -4
- package/public/KoboldAI Settings/Luna Moth.settings +8 -4
- package/public/KoboldAI Settings/Mayday.settings +8 -4
- package/public/KoboldAI Settings/Miro Bronze.settings +2 -3
- package/public/KoboldAI Settings/Miro Gold.settings +2 -3
- package/public/KoboldAI Settings/Miro Silver.settings +2 -3
- package/public/KoboldAI Settings/Ouroboros.settings +8 -4
- package/public/KoboldAI Settings/Pleasing Results.settings +8 -4
- package/public/KoboldAI Settings/Pro Writer.settings +8 -4
- package/public/KoboldAI Settings/RecoveredRuins.settings +9 -5
- package/public/KoboldAI Settings/Space Alien.settings +6 -3
- package/public/KoboldAI Settings/Storywriter.settings +9 -5
- package/public/KoboldAI Settings/TFS-with-Top-A.settings +6 -3
- package/public/KoboldAI Settings/Titanic.settings +6 -3
- package/public/KoboldAI Settings/simple-proxy-for-tavern.settings +6 -3
- package/public/context/Adventure.json +6 -0
- package/public/context/ChatML.json +6 -0
- package/public/context/Libra-32B.json +6 -0
- package/public/context/Lightning 1.1.json +6 -0
- package/public/context/Mistral.json +6 -0
- package/public/context/Story.json +6 -0
- package/public/css/mobile-styles.css +29 -3
- package/public/css/st-tailwind.css +31 -1
- package/public/css/world-info.css +34 -3
- package/public/i18n.json +363 -256
- package/public/img/palm.svg +67 -0
- package/public/index.html +404 -151
- package/public/instruct/Adventure.json +18 -0
- package/public/instruct/ChatML.json +17 -0
- package/public/instruct/Libra-32B.json +17 -0
- package/public/instruct/Lightning 1.1.json +18 -0
- package/public/instruct/Mistral.json +17 -0
- package/public/instruct/Story.json +18 -0
- package/public/instruct/Synthia.json +17 -0
- package/public/script.js +133 -61
- package/public/scripts/RossAscends-mods.js +1 -0
- package/public/scripts/extensions/audio/style.css +28 -31
- package/public/scripts/extensions/audio/window.html +13 -30
- package/public/scripts/extensions/backgrounds/index.js +3 -3
- package/public/scripts/extensions/expressions/index.js +8 -3
- package/public/scripts/extensions/gallery/index.js +1 -1
- package/public/scripts/extensions/idle/index.js +1 -1
- package/public/scripts/extensions/memory/index.js +2 -2
- package/public/scripts/extensions/objective/index.js +4 -21
- package/public/scripts/extensions/quick-reply/index.js +6 -6
- package/public/scripts/extensions/stable-diffusion/index.js +165 -16
- package/public/scripts/extensions/stable-diffusion/settings.html +18 -2
- package/public/scripts/extensions/translate/index.js +24 -0
- package/public/scripts/extensions/vectors/index.js +8 -1
- package/public/scripts/extensions/vectors/settings.html +2 -1
- package/public/scripts/group-chats.js +6 -12
- package/public/scripts/instruct-mode.js +23 -15
- package/public/scripts/kai-settings.js +3 -2
- package/public/scripts/openai.js +54 -12
- package/public/scripts/power-user.js +19 -9
- package/public/scripts/preset-manager.js +4 -4
- package/public/scripts/secrets.js +4 -0
- package/public/scripts/slash-commands.js +3 -3
- package/public/scripts/templates/macros.html +6 -0
- package/public/scripts/textgen-settings.js +164 -9
- package/public/scripts/utils.js +1 -10
- package/public/scripts/world-info.js +420 -33
- package/public/settings.json +6 -2
- package/public/style.css +2 -4
- package/server.js +174 -21
- package/src/constants.js +32 -0
- package/src/horde.js +1 -1
- package/src/palm-vectors.js +43 -0
- package/src/secrets.js +2 -0
- package/src/stable-diffusion.js +33 -1
- package/src/translate.js +25 -1
- package/src/vectors.js +2 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
name: Bug Report 🐛
|
|
2
|
-
description: Report something that's not working the
|
|
2
|
+
description: Report something that's not working the intended way. Support requests for external programs (reverse proxies, 3rd party servers, other peoples' forks) will be refused!
|
|
3
3
|
title: '[BUG] <title>'
|
|
4
4
|
labels: ['bug']
|
|
5
5
|
body:
|
|
@@ -11,7 +11,7 @@ env:
|
|
|
11
11
|
# This should allow creation of docker images even in forked repositories
|
|
12
12
|
# Image name may not contain uppercase characters, so we can not use the repository name
|
|
13
13
|
# Creates a string like: ghcr.io/SillyTavern/sillytavern
|
|
14
|
-
image_name: ghcr.io
|
|
14
|
+
image_name: ghcr.io/sillytavern/sillytavern
|
|
15
15
|
|
|
16
16
|
jobs:
|
|
17
17
|
|
package/Dockerfile
CHANGED
|
@@ -23,7 +23,7 @@ COPY . ./
|
|
|
23
23
|
|
|
24
24
|
# Copy default chats, characters and user avatars to <folder>.default folder
|
|
25
25
|
RUN \
|
|
26
|
-
IFS="," RESOURCES="characters,chats,groups,group chats,User Avatars,worlds" && \
|
|
26
|
+
IFS="," RESOURCES="characters,chats,groups,group chats,User Avatars,worlds,OpenAI Settings,NovelAI Settings,KoboldAI Settings,TextGen Settings" && \
|
|
27
27
|
\
|
|
28
28
|
echo "*** Store default $RESOURCES in <folder>.default ***" && \
|
|
29
29
|
for R in $RESOURCES; do mv "public/$R" "public/$R.default"; done && \
|
package/default/settings.json
CHANGED
|
@@ -406,7 +406,6 @@
|
|
|
406
406
|
"tfs": 1,
|
|
407
407
|
"rep_pen_slope": 0,
|
|
408
408
|
"single_line": false,
|
|
409
|
-
"use_stop_sequence": false,
|
|
410
409
|
"streaming_kobold": false,
|
|
411
410
|
"sampler_order": [
|
|
412
411
|
6,
|
|
@@ -416,7 +415,12 @@
|
|
|
416
415
|
3,
|
|
417
416
|
4,
|
|
418
417
|
5
|
|
419
|
-
]
|
|
418
|
+
],
|
|
419
|
+
"mirostat": 0,
|
|
420
|
+
"mirostat_tau": 5,
|
|
421
|
+
"mirostat_eta": 0.1,
|
|
422
|
+
"use_default_badwordsids": false,
|
|
423
|
+
"grammar": ""
|
|
420
424
|
},
|
|
421
425
|
"oai_settings": {
|
|
422
426
|
"preset_settings_openai": "Default",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
|
|
3
3
|
# Initialize missing user files
|
|
4
|
-
IFS="," RESOURCES="characters,groups,group chats,
|
|
4
|
+
IFS="," RESOURCES="characters,chats,groups,group chats,User Avatars,worlds,OpenAI Settings,NovelAI Settings,KoboldAI Settings,TextGen Settings"
|
|
5
5
|
for R in $RESOURCES; do
|
|
6
6
|
if [ ! -e "config/$R" ]; then
|
|
7
7
|
echo "Resource not found, copying from defaults: $R"
|
package/package.json
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"device-detector-js": "^3.0.3",
|
|
12
12
|
"express": "^4.18.2",
|
|
13
13
|
"google-translate-api-browser": "^3.0.1",
|
|
14
|
+
"bing-translate-api": "^2.9.1",
|
|
14
15
|
"gpt3-tokenizer": "^1.1.5",
|
|
15
16
|
"ip-matching": "^2.1.2",
|
|
16
17
|
"ipaddr.js": "^2.0.1",
|
|
@@ -46,7 +47,7 @@
|
|
|
46
47
|
"type": "git",
|
|
47
48
|
"url": "https://github.com/SillyTavern/SillyTavern.git"
|
|
48
49
|
},
|
|
49
|
-
"version": "1.10.
|
|
50
|
+
"version": "1.10.5",
|
|
50
51
|
"scripts": {
|
|
51
52
|
"start": "node server.js",
|
|
52
53
|
"start-multi": "node server.js --disableCsrf",
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"temp": 1.15,
|
|
3
|
-
"
|
|
3
|
+
"rep_pen": 1.05,
|
|
4
|
+
"rep_pen_range": 2048,
|
|
4
5
|
"top_p": 0.95,
|
|
5
6
|
"top_a": 0,
|
|
7
|
+
"top_k": 0,
|
|
6
8
|
"typical": 1,
|
|
7
9
|
"tfs": 0.8,
|
|
8
|
-
"rep_pen": 1.05,
|
|
9
|
-
"rep_pen_range": 2048,
|
|
10
10
|
"rep_pen_slope": 7,
|
|
11
11
|
"sampler_order": [
|
|
12
12
|
6,
|
|
@@ -16,5 +16,9 @@
|
|
|
16
16
|
5,
|
|
17
17
|
1,
|
|
18
18
|
4
|
|
19
|
-
]
|
|
19
|
+
],
|
|
20
|
+
"mirostat": 0,
|
|
21
|
+
"mirostat_tau": 5,
|
|
22
|
+
"mirostat_eta": 0.1,
|
|
23
|
+
"grammar": ""
|
|
20
24
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"temp": 0.59,
|
|
3
|
-
"
|
|
3
|
+
"rep_pen": 1.1,
|
|
4
|
+
"rep_pen_range": 2048,
|
|
4
5
|
"top_p": 1,
|
|
5
6
|
"top_a": 0,
|
|
7
|
+
"top_k": 0,
|
|
6
8
|
"typical": 1,
|
|
7
9
|
"tfs": 0.87,
|
|
8
|
-
"rep_pen": 1.1,
|
|
9
|
-
"rep_pen_range": 2048,
|
|
10
10
|
"rep_pen_slope": 0.3,
|
|
11
11
|
"sampler_order": [
|
|
12
12
|
6,
|
|
@@ -16,5 +16,9 @@
|
|
|
16
16
|
3,
|
|
17
17
|
1,
|
|
18
18
|
4
|
|
19
|
-
]
|
|
19
|
+
],
|
|
20
|
+
"mirostat": 0,
|
|
21
|
+
"mirostat_tau": 5,
|
|
22
|
+
"mirostat_eta": 0.1,
|
|
23
|
+
"grammar": ""
|
|
20
24
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"temp": 0.8,
|
|
3
|
-
"
|
|
3
|
+
"rep_pen": 1.15,
|
|
4
|
+
"rep_pen_range": 2048,
|
|
4
5
|
"top_p": 0.9,
|
|
5
6
|
"top_a": 0,
|
|
7
|
+
"top_k": 100,
|
|
6
8
|
"typical": 1,
|
|
7
9
|
"tfs": 1,
|
|
8
|
-
"rep_pen": 1.15,
|
|
9
|
-
"rep_pen_range": 2048,
|
|
10
10
|
"rep_pen_slope": 3.4,
|
|
11
11
|
"sampler_order": [
|
|
12
12
|
6,
|
|
@@ -16,5 +16,9 @@
|
|
|
16
16
|
3,
|
|
17
17
|
1,
|
|
18
18
|
4
|
|
19
|
-
]
|
|
19
|
+
],
|
|
20
|
+
"mirostat": 0,
|
|
21
|
+
"mirostat_tau": 5,
|
|
22
|
+
"mirostat_eta": 0.1,
|
|
23
|
+
"grammar": ""
|
|
20
24
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"temp": 0.51,
|
|
3
|
+
"rep_pen": 1.2,
|
|
4
|
+
"rep_pen_range": 2048,
|
|
3
5
|
"top_p": 1,
|
|
4
|
-
"top_k": 0,
|
|
5
|
-
"tfs": 0.99,
|
|
6
6
|
"top_a": 0,
|
|
7
|
+
"top_k": 0,
|
|
7
8
|
"typical": 1,
|
|
8
|
-
"
|
|
9
|
-
"rep_pen_range": 2048,
|
|
9
|
+
"tfs": 0.99,
|
|
10
10
|
"rep_pen_slope": 0,
|
|
11
11
|
"sampler_order": [
|
|
12
12
|
6,
|
|
@@ -16,5 +16,9 @@
|
|
|
16
16
|
3,
|
|
17
17
|
1,
|
|
18
18
|
4
|
|
19
|
-
]
|
|
19
|
+
],
|
|
20
|
+
"mirostat": 0,
|
|
21
|
+
"mirostat_tau": 5,
|
|
22
|
+
"mirostat_eta": 0.1,
|
|
23
|
+
"grammar": ""
|
|
20
24
|
}
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
"typical": 1,
|
|
9
9
|
"tfs": 1,
|
|
10
10
|
"rep_pen_slope": 0,
|
|
11
|
-
"single_line": false,
|
|
12
11
|
"sampler_order": [
|
|
13
12
|
6,
|
|
14
13
|
0,
|
|
@@ -17,5 +16,9 @@
|
|
|
17
16
|
4,
|
|
18
17
|
2,
|
|
19
18
|
5
|
|
20
|
-
]
|
|
21
|
-
|
|
19
|
+
],
|
|
20
|
+
"mirostat": 0,
|
|
21
|
+
"mirostat_tau": 5,
|
|
22
|
+
"mirostat_eta": 0.1,
|
|
23
|
+
"grammar": ""
|
|
24
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"temp": 0.63,
|
|
3
|
-
"
|
|
3
|
+
"rep_pen": 1.05,
|
|
4
|
+
"rep_pen_range": 2048,
|
|
4
5
|
"top_p": 0.98,
|
|
5
6
|
"top_a": 0,
|
|
7
|
+
"top_k": 0,
|
|
6
8
|
"typical": 1,
|
|
7
9
|
"tfs": 0.98,
|
|
8
|
-
"rep_pen": 1.05,
|
|
9
|
-
"rep_pen_range": 2048,
|
|
10
10
|
"rep_pen_slope": 0.1,
|
|
11
11
|
"sampler_order": [
|
|
12
12
|
6,
|
|
@@ -16,5 +16,9 @@
|
|
|
16
16
|
5,
|
|
17
17
|
1,
|
|
18
18
|
4
|
|
19
|
-
]
|
|
19
|
+
],
|
|
20
|
+
"mirostat": 0,
|
|
21
|
+
"mirostat_tau": 5,
|
|
22
|
+
"mirostat_eta": 0.1,
|
|
23
|
+
"grammar": ""
|
|
20
24
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"temp": 0.7,
|
|
3
|
-
"
|
|
3
|
+
"rep_pen": 1.1,
|
|
4
|
+
"rep_pen_range": 1024,
|
|
4
5
|
"top_p": 0.5,
|
|
5
6
|
"top_a": 0.75,
|
|
7
|
+
"top_k": 0,
|
|
6
8
|
"typical": 0.19,
|
|
7
9
|
"tfs": 0.97,
|
|
8
|
-
"rep_pen": 1.1,
|
|
9
|
-
"rep_pen_range": 1024,
|
|
10
10
|
"rep_pen_slope": 0.7,
|
|
11
11
|
"sampler_order": [
|
|
12
12
|
6,
|
|
@@ -16,5 +16,9 @@
|
|
|
16
16
|
2,
|
|
17
17
|
1,
|
|
18
18
|
0
|
|
19
|
-
]
|
|
19
|
+
],
|
|
20
|
+
"mirostat": 0,
|
|
21
|
+
"mirostat_tau": 5,
|
|
22
|
+
"mirostat_eta": 0.1,
|
|
23
|
+
"grammar": ""
|
|
20
24
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"temp": 0.7,
|
|
3
|
-
"
|
|
3
|
+
"rep_pen": 1.1,
|
|
4
|
+
"rep_pen_range": 1024,
|
|
4
5
|
"top_p": 1,
|
|
5
6
|
"top_a": 0,
|
|
7
|
+
"top_k": 0,
|
|
6
8
|
"typical": 1,
|
|
7
9
|
"tfs": 0.9,
|
|
8
|
-
"rep_pen": 1.1,
|
|
9
|
-
"rep_pen_range": 1024,
|
|
10
10
|
"rep_pen_slope": 0.7,
|
|
11
11
|
"sampler_order": [
|
|
12
12
|
6,
|
|
@@ -16,5 +16,9 @@
|
|
|
16
16
|
3,
|
|
17
17
|
4,
|
|
18
18
|
5
|
|
19
|
-
]
|
|
19
|
+
],
|
|
20
|
+
"mirostat": 0,
|
|
21
|
+
"mirostat_tau": 5,
|
|
22
|
+
"mirostat_eta": 0.1,
|
|
23
|
+
"grammar": ""
|
|
20
24
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"temp": 0.66,
|
|
3
|
-
"
|
|
3
|
+
"rep_pen": 1.1,
|
|
4
|
+
"rep_pen_range": 1024,
|
|
4
5
|
"top_p": 1,
|
|
5
6
|
"top_a": 0.96,
|
|
7
|
+
"top_k": 0,
|
|
6
8
|
"typical": 0.6,
|
|
7
9
|
"tfs": 1,
|
|
8
|
-
"rep_pen": 1.1,
|
|
9
|
-
"rep_pen_range": 1024,
|
|
10
10
|
"rep_pen_slope": 0.7,
|
|
11
11
|
"sampler_order": [
|
|
12
12
|
6,
|
|
@@ -16,5 +16,9 @@
|
|
|
16
16
|
0,
|
|
17
17
|
2,
|
|
18
18
|
3
|
|
19
|
-
]
|
|
19
|
+
],
|
|
20
|
+
"mirostat": 0,
|
|
21
|
+
"mirostat_tau": 5,
|
|
22
|
+
"mirostat_eta": 0.1,
|
|
23
|
+
"grammar": ""
|
|
20
24
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"temp": 0.94,
|
|
3
|
-
"
|
|
3
|
+
"rep_pen": 1.05,
|
|
4
|
+
"rep_pen_range": 2048,
|
|
4
5
|
"top_p": 1,
|
|
5
6
|
"top_a": 0,
|
|
7
|
+
"top_k": 12,
|
|
6
8
|
"typical": 1,
|
|
7
9
|
"tfs": 0.94,
|
|
8
|
-
"rep_pen": 1.05,
|
|
9
|
-
"rep_pen_range": 2048,
|
|
10
10
|
"rep_pen_slope": 0.2,
|
|
11
11
|
"sampler_order": [
|
|
12
12
|
6,
|
|
@@ -16,5 +16,9 @@
|
|
|
16
16
|
3,
|
|
17
17
|
1,
|
|
18
18
|
4
|
|
19
|
-
]
|
|
19
|
+
],
|
|
20
|
+
"mirostat": 0,
|
|
21
|
+
"mirostat_tau": 5,
|
|
22
|
+
"mirostat_eta": 0.1,
|
|
23
|
+
"grammar": ""
|
|
20
24
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"temp": 1.5,
|
|
3
|
-
"
|
|
3
|
+
"rep_pen": 1.1,
|
|
4
|
+
"rep_pen_range": 2048,
|
|
4
5
|
"top_p": 0.24,
|
|
5
6
|
"top_a": 0,
|
|
7
|
+
"top_k": 85,
|
|
6
8
|
"typical": 1,
|
|
7
9
|
"tfs": 1,
|
|
8
|
-
"rep_pen": 1.1,
|
|
9
|
-
"rep_pen_range": 2048,
|
|
10
10
|
"rep_pen_slope": 0,
|
|
11
11
|
"sampler_order": [
|
|
12
12
|
6,
|
|
@@ -16,5 +16,9 @@
|
|
|
16
16
|
3,
|
|
17
17
|
1,
|
|
18
18
|
4
|
|
19
|
-
]
|
|
19
|
+
],
|
|
20
|
+
"mirostat": 0,
|
|
21
|
+
"mirostat_tau": 5,
|
|
22
|
+
"mirostat_eta": 0.1,
|
|
23
|
+
"grammar": ""
|
|
20
24
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"temp": 1.05,
|
|
3
|
-
"
|
|
3
|
+
"rep_pen": 1.1,
|
|
4
|
+
"rep_pen_range": 1024,
|
|
4
5
|
"top_p": 0.95,
|
|
5
6
|
"top_a": 0,
|
|
7
|
+
"top_k": 0,
|
|
6
8
|
"typical": 1,
|
|
7
9
|
"tfs": 1,
|
|
8
|
-
"rep_pen": 1.1,
|
|
9
|
-
"rep_pen_range": 1024,
|
|
10
10
|
"rep_pen_slope": 0.7,
|
|
11
11
|
"sampler_order": [
|
|
12
12
|
6,
|
|
@@ -16,5 +16,9 @@
|
|
|
16
16
|
3,
|
|
17
17
|
4,
|
|
18
18
|
5
|
|
19
|
-
]
|
|
19
|
+
],
|
|
20
|
+
"mirostat": 0,
|
|
21
|
+
"mirostat_tau": 5,
|
|
22
|
+
"mirostat_eta": 0.1,
|
|
23
|
+
"grammar": ""
|
|
20
24
|
}
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
"typical": 1,
|
|
9
9
|
"tfs": 1,
|
|
10
10
|
"rep_pen_slope": 0.9,
|
|
11
|
-
"single_line": false,
|
|
12
11
|
"sampler_order": [
|
|
13
12
|
6,
|
|
14
13
|
0,
|
|
@@ -21,5 +20,5 @@
|
|
|
21
20
|
"mirostat": 2,
|
|
22
21
|
"mirostat_tau": 9.61,
|
|
23
22
|
"mirostat_eta": 1,
|
|
24
|
-
"
|
|
25
|
-
}
|
|
23
|
+
"grammar": ""
|
|
24
|
+
}
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
"typical": 1,
|
|
9
9
|
"tfs": 1,
|
|
10
10
|
"rep_pen_slope": 0.9,
|
|
11
|
-
"single_line": false,
|
|
12
11
|
"sampler_order": [
|
|
13
12
|
6,
|
|
14
13
|
0,
|
|
@@ -21,5 +20,5 @@
|
|
|
21
20
|
"mirostat": 2,
|
|
22
21
|
"mirostat_tau": 9.91,
|
|
23
22
|
"mirostat_eta": 1,
|
|
24
|
-
"
|
|
25
|
-
}
|
|
23
|
+
"grammar": ""
|
|
24
|
+
}
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
"typical": 1,
|
|
9
9
|
"tfs": 1,
|
|
10
10
|
"rep_pen_slope": 0.9,
|
|
11
|
-
"single_line": false,
|
|
12
11
|
"sampler_order": [
|
|
13
12
|
6,
|
|
14
13
|
0,
|
|
@@ -21,5 +20,5 @@
|
|
|
21
20
|
"mirostat": 2,
|
|
22
21
|
"mirostat_tau": 9.62,
|
|
23
22
|
"mirostat_eta": 1,
|
|
24
|
-
"
|
|
25
|
-
}
|
|
23
|
+
"grammar": ""
|
|
24
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"temp": 1.07,
|
|
3
|
-
"
|
|
3
|
+
"rep_pen": 1.05,
|
|
4
|
+
"rep_pen_range": 404,
|
|
4
5
|
"top_p": 1,
|
|
5
6
|
"top_a": 0,
|
|
7
|
+
"top_k": 100,
|
|
6
8
|
"typical": 1,
|
|
7
9
|
"tfs": 0.93,
|
|
8
|
-
"rep_pen": 1.05,
|
|
9
|
-
"rep_pen_range": 404,
|
|
10
10
|
"rep_pen_slope": 0.8,
|
|
11
11
|
"sampler_order": [
|
|
12
12
|
6,
|
|
@@ -16,5 +16,9 @@
|
|
|
16
16
|
2,
|
|
17
17
|
1,
|
|
18
18
|
4
|
|
19
|
-
]
|
|
19
|
+
],
|
|
20
|
+
"mirostat": 0,
|
|
21
|
+
"mirostat_tau": 5,
|
|
22
|
+
"mirostat_eta": 0.1,
|
|
23
|
+
"grammar": ""
|
|
20
24
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"temp": 0.44,
|
|
3
|
-
"
|
|
3
|
+
"rep_pen": 1.15,
|
|
4
|
+
"rep_pen_range": 2048,
|
|
4
5
|
"top_p": 1,
|
|
5
6
|
"top_a": 0,
|
|
7
|
+
"top_k": 0,
|
|
6
8
|
"typical": 1,
|
|
7
9
|
"tfs": 0.9,
|
|
8
|
-
"rep_pen": 1.15,
|
|
9
|
-
"rep_pen_range": 2048,
|
|
10
10
|
"rep_pen_slope": 6.8,
|
|
11
11
|
"sampler_order": [
|
|
12
12
|
6,
|
|
@@ -16,5 +16,9 @@
|
|
|
16
16
|
3,
|
|
17
17
|
1,
|
|
18
18
|
4
|
|
19
|
-
]
|
|
19
|
+
],
|
|
20
|
+
"mirostat": 0,
|
|
21
|
+
"mirostat_tau": 5,
|
|
22
|
+
"mirostat_eta": 0.1,
|
|
23
|
+
"grammar": ""
|
|
20
24
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"temp": 1.35,
|
|
3
|
-
"
|
|
3
|
+
"rep_pen": 1.15,
|
|
4
|
+
"rep_pen_range": 2048,
|
|
4
5
|
"top_p": 1,
|
|
5
6
|
"top_a": 0,
|
|
7
|
+
"top_k": 0,
|
|
6
8
|
"typical": 1,
|
|
7
9
|
"tfs": 0.69,
|
|
8
|
-
"rep_pen": 1.15,
|
|
9
|
-
"rep_pen_range": 2048,
|
|
10
10
|
"rep_pen_slope": 0.1,
|
|
11
11
|
"sampler_order": [
|
|
12
12
|
6,
|
|
@@ -16,5 +16,9 @@
|
|
|
16
16
|
0,
|
|
17
17
|
1,
|
|
18
18
|
4
|
|
19
|
-
]
|
|
19
|
+
],
|
|
20
|
+
"mirostat": 0,
|
|
21
|
+
"mirostat_tau": 5,
|
|
22
|
+
"mirostat_eta": 0.1,
|
|
23
|
+
"grammar": ""
|
|
20
24
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"temp": 1,
|
|
3
|
-
"
|
|
3
|
+
"rep_pen": 1.1,
|
|
4
|
+
"rep_pen_range": 600,
|
|
4
5
|
"top_p": 0.95,
|
|
5
6
|
"top_a": 0,
|
|
7
|
+
"top_k": 0,
|
|
6
8
|
"typical": 1,
|
|
7
9
|
"tfs": 1,
|
|
8
|
-
"rep_pen": 1.1,
|
|
9
|
-
"rep_pen_range": 600,
|
|
10
10
|
"rep_pen_slope": 0,
|
|
11
11
|
"sampler_order": [
|
|
12
12
|
6,
|
|
@@ -16,5 +16,9 @@
|
|
|
16
16
|
3,
|
|
17
17
|
4,
|
|
18
18
|
5
|
|
19
|
-
]
|
|
20
|
-
|
|
19
|
+
],
|
|
20
|
+
"mirostat": 0,
|
|
21
|
+
"mirostat_tau": 5,
|
|
22
|
+
"mirostat_eta": 0.1,
|
|
23
|
+
"grammar": ""
|
|
24
|
+
}
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
"typical": 1,
|
|
9
9
|
"tfs": 1,
|
|
10
10
|
"rep_pen_slope": 0,
|
|
11
|
-
"single_line": false,
|
|
12
11
|
"sampler_order": [
|
|
13
12
|
6,
|
|
14
13
|
0,
|
|
@@ -17,5 +16,9 @@
|
|
|
17
16
|
4,
|
|
18
17
|
2,
|
|
19
18
|
5
|
|
20
|
-
]
|
|
21
|
-
|
|
19
|
+
],
|
|
20
|
+
"mirostat": 0,
|
|
21
|
+
"mirostat_tau": 5,
|
|
22
|
+
"mirostat_eta": 0.1,
|
|
23
|
+
"grammar": ""
|
|
24
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"temp": 0.72,
|
|
3
|
-
"
|
|
3
|
+
"rep_pen": 1.1,
|
|
4
|
+
"rep_pen_range": 2048,
|
|
5
|
+
"top_p": 0.73,
|
|
4
6
|
"top_a": 0,
|
|
5
7
|
"top_k": 0,
|
|
6
|
-
"top_p": 0.73,
|
|
7
8
|
"typical": 1,
|
|
8
|
-
"
|
|
9
|
-
"rep_pen_range": 2048,
|
|
9
|
+
"tfs": 1,
|
|
10
10
|
"rep_pen_slope": 0.2,
|
|
11
11
|
"sampler_order": [
|
|
12
12
|
6,
|
|
@@ -16,5 +16,9 @@
|
|
|
16
16
|
3,
|
|
17
17
|
1,
|
|
18
18
|
4
|
|
19
|
-
]
|
|
19
|
+
],
|
|
20
|
+
"mirostat": 0,
|
|
21
|
+
"mirostat_tau": 5,
|
|
22
|
+
"mirostat_eta": 0.1,
|
|
23
|
+
"grammar": ""
|
|
20
24
|
}
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
"typical": 1,
|
|
9
9
|
"tfs": 0.95,
|
|
10
10
|
"rep_pen_slope": 0,
|
|
11
|
-
"single_line": false,
|
|
12
11
|
"sampler_order": [
|
|
13
12
|
6,
|
|
14
13
|
0,
|
|
@@ -17,5 +16,9 @@
|
|
|
17
16
|
4,
|
|
18
17
|
2,
|
|
19
18
|
5
|
|
20
|
-
]
|
|
21
|
-
|
|
19
|
+
],
|
|
20
|
+
"mirostat": 0,
|
|
21
|
+
"mirostat_tau": 5,
|
|
22
|
+
"mirostat_eta": 0.1,
|
|
23
|
+
"grammar": ""
|
|
24
|
+
}
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
"typical": 1,
|
|
9
9
|
"tfs": 1,
|
|
10
10
|
"rep_pen_slope": 0,
|
|
11
|
-
"single_line": false,
|
|
12
11
|
"sampler_order": [
|
|
13
12
|
6,
|
|
14
13
|
0,
|
|
@@ -17,5 +16,9 @@
|
|
|
17
16
|
4,
|
|
18
17
|
2,
|
|
19
18
|
5
|
|
20
|
-
]
|
|
21
|
-
|
|
19
|
+
],
|
|
20
|
+
"mirostat": 0,
|
|
21
|
+
"mirostat_tau": 5,
|
|
22
|
+
"mirostat_eta": 0.1,
|
|
23
|
+
"grammar": ""
|
|
24
|
+
}
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
"typical": 1,
|
|
9
9
|
"tfs": 1,
|
|
10
10
|
"rep_pen_slope": 0,
|
|
11
|
-
"single_line": false,
|
|
12
11
|
"sampler_order": [
|
|
13
12
|
6,
|
|
14
13
|
0,
|
|
@@ -17,5 +16,9 @@
|
|
|
17
16
|
4,
|
|
18
17
|
2,
|
|
19
18
|
5
|
|
20
|
-
]
|
|
21
|
-
|
|
19
|
+
],
|
|
20
|
+
"mirostat": 0,
|
|
21
|
+
"mirostat_tau": 5,
|
|
22
|
+
"mirostat_eta": 0.1,
|
|
23
|
+
"grammar": ""
|
|
24
|
+
}
|