sillytavern 1.13.4 → 1.14.0
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/CONTRIBUTING.md +17 -4
- package/Dockerfile +1 -1
- package/config.yaml +20 -8
- package/default/config.yaml +20 -8
- package/default/content/index.json +2 -218
- package/default/content/presets/kobold/Deterministic.json +5 -3
- package/default/content/presets/kobold/{TFS-with-Top-A.json → Neutral.json} +8 -6
- package/default/content/presets/kobold/RecoveredRuins.json +3 -1
- package/default/content/presets/kobold/Universal-Creative.json +1 -1
- package/default/content/presets/kobold/Universal-Light.json +1 -1
- package/default/content/presets/kobold/Universal-Super-Creative.json +1 -1
- package/default/content/presets/openai/Default.json +6 -3
- package/default/content/presets/textgen/Default.json +40 -7
- package/default/content/presets/textgen/Deterministic.json +36 -3
- package/default/content/presets/textgen/{NovelAI (Pleasing Results).json → Neutral.json} +37 -4
- package/default/content/presets/textgen/Universal-Creative.json +35 -2
- package/default/content/presets/textgen/Universal-Light.json +35 -2
- package/default/content/presets/textgen/Universal-Super-Creative.json +35 -2
- package/default/content/settings.json +5 -3
- package/package.json +3 -2
- package/public/css/backgrounds.css +142 -69
- package/public/css/file-form.css +103 -0
- package/public/css/mobile-styles.css +31 -44
- package/public/css/toggle-dependent.css +18 -0
- package/public/css/world-info.css +12 -0
- package/public/global.d.ts +84 -0
- package/public/img/apple-icon-192x192.png +0 -0
- package/public/img/apple-icon-512x512.png +0 -0
- package/public/img/siliconflow.svg +4 -0
- package/public/img/zai.svg +3 -0
- package/public/index.html +410 -308
- package/public/lib/pagination.js +69 -3
- package/public/locales/ar-sa.json +2 -2
- package/public/locales/de-de.json +2 -2
- package/public/locales/es-es.json +2 -2
- package/public/locales/fr-fr.json +3 -3
- package/public/locales/is-is.json +2 -2
- package/public/locales/it-it.json +2 -2
- package/public/locales/ja-jp.json +1 -1
- package/public/locales/ko-kr.json +2 -4
- package/public/locales/nl-nl.json +2 -4
- package/public/locales/pt-pt.json +2 -4
- package/public/locales/ru-ru.json +123 -35
- package/public/locales/th-th.json +2 -4
- package/public/locales/uk-ua.json +2 -4
- package/public/locales/vi-vn.json +2 -4
- package/public/locales/zh-cn.json +25 -13
- package/public/locales/zh-tw.json +8 -8
- package/public/manifest.json +10 -0
- package/public/script.js +1740 -1002
- package/public/scripts/RossAscends-mods.js +43 -37
- package/public/scripts/audio-player.js +605 -0
- package/public/scripts/backgrounds.js +237 -167
- package/public/scripts/bookmarks.js +1 -0
- package/public/scripts/chats.js +480 -174
- package/public/scripts/constants.js +70 -0
- package/public/scripts/custom-request.js +3 -1
- package/public/scripts/dom-handlers.js +66 -0
- package/public/scripts/events.js +5 -0
- package/public/scripts/extensions/assets/index.js +37 -3
- package/public/scripts/extensions/assets/style.css +27 -2
- package/public/scripts/extensions/caption/index.js +148 -44
- package/public/scripts/extensions/caption/settings.html +36 -45
- package/public/scripts/extensions/connection-manager/index.js +23 -4
- package/public/scripts/extensions/gallery/index.js +3 -14
- package/public/scripts/extensions/memory/index.js +1 -1
- package/public/scripts/extensions/quick-reply/index.js +1 -0
- package/public/scripts/extensions/regex/debugger.html +5 -1
- package/public/scripts/extensions/regex/dropdown.html +35 -3
- package/public/scripts/extensions/regex/engine.js +228 -27
- package/public/scripts/extensions/regex/importTarget.html +6 -0
- package/public/scripts/extensions/regex/index.js +535 -168
- package/public/scripts/extensions/regex/presetEmbeddedScripts.html +5 -0
- package/public/scripts/extensions/regex/scriptTemplate.html +20 -11
- package/public/scripts/extensions/regex/style.css +35 -26
- package/public/scripts/extensions/shared.js +9 -3
- package/public/scripts/extensions/stable-diffusion/dropdown.html +1 -1
- package/public/scripts/extensions/stable-diffusion/index.js +343 -167
- package/public/scripts/extensions/stable-diffusion/settings.html +32 -9
- package/public/scripts/extensions/tts/cosyvoice.js +2 -2
- package/public/scripts/extensions/tts/css/minimax-tts.css +5 -0
- package/public/scripts/extensions/tts/electronhub.js +455 -0
- package/public/scripts/extensions/tts/gpt-sovits-v2.js +4 -5
- package/public/scripts/extensions/tts/index.js +2 -0
- package/public/scripts/extensions/tts/minimax.js +44 -16
- package/public/scripts/extensions/tts/settings.html +2 -2
- package/public/scripts/extensions/tts/system.js +5 -4
- package/public/scripts/extensions/vectors/index.js +147 -25
- package/public/scripts/extensions/vectors/settings.html +21 -0
- package/public/scripts/extensions.js +5 -25
- package/public/scripts/group-chats.js +65 -44
- package/public/scripts/horde.js +3 -2
- package/public/scripts/loader.js +1 -1
- package/public/scripts/macros.js +31 -1
- package/public/scripts/openai.js +680 -525
- package/public/scripts/personas.js +39 -22
- package/public/scripts/popup.js +26 -5
- package/public/scripts/power-user.js +95 -14
- package/public/scripts/preset-manager.js +45 -18
- package/public/scripts/reasoning.js +13 -3
- package/public/scripts/samplerSelect.js +298 -297
- package/public/scripts/scrapers.js +1 -1
- package/public/scripts/secrets.js +32 -8
- package/public/scripts/slash-commands/SlashCommandCommonEnumsProvider.js +17 -0
- package/public/scripts/slash-commands.js +41 -18
- package/public/scripts/st-context.js +22 -1
- package/public/scripts/system-messages.js +15 -11
- package/public/scripts/tags.js +58 -53
- package/public/scripts/templates/macros.html +2 -0
- package/public/scripts/templates/samplerSelector.html +11 -5
- package/public/scripts/templates/scenarioOverride.html +40 -12
- package/public/scripts/templates/tagManagement.html +8 -9
- package/public/scripts/textgen-models.js +8 -9
- package/public/scripts/textgen-settings.js +67 -24
- package/public/scripts/tokenizers.js +51 -0
- package/public/scripts/tool-calling.js +7 -4
- package/public/scripts/util/SimpleMutex.js +44 -0
- package/public/scripts/util/stream-fadein.js +69 -0
- package/public/scripts/utils.js +232 -9
- package/public/scripts/welcome-screen.js +21 -15
- package/public/scripts/world-info.js +352 -65
- package/public/style.css +84 -14
- package/src/byaf.js +226 -68
- package/src/config-init.js +10 -0
- package/src/constants.js +40 -0
- package/src/endpoints/backends/chat-completions.js +133 -30
- package/src/endpoints/backends/text-completions.js +9 -4
- package/src/endpoints/characters.js +129 -9
- package/src/endpoints/chats.js +58 -22
- package/src/endpoints/data-maid.js +38 -6
- package/src/endpoints/extensions.js +11 -5
- package/src/endpoints/google.js +175 -20
- package/src/endpoints/horde.js +9 -2
- package/src/endpoints/openai.js +208 -1
- package/src/endpoints/openrouter.js +50 -2
- package/src/endpoints/secrets.js +5 -2
- package/src/endpoints/stable-diffusion.js +17 -2
- package/src/endpoints/thumbnails.js +7 -1
- package/src/endpoints/vectors.js +21 -1
- package/src/express-common.js +10 -0
- package/src/middleware/webpack-serve.js +2 -1
- package/src/middleware/whitelist.js +35 -2
- package/src/prompt-converters.js +77 -23
- package/src/types/byaf.d.ts +14 -0
- package/src/users.js +33 -4
- package/src/util.js +67 -31
- package/src/vectors/ollama-vectors.js +1 -0
- package/src/vectors/openai-vectors.js +22 -5
- package/tests/{.eslintrc.js → .eslintrc.cjs} +11 -1
- package/tests/jest-e2e.config.json +11 -0
- package/tests/jest.config.json +1 -5
- package/tests/package-lock.json +4 -252
- package/tests/package.json +3 -2
- package/tests/util.test.js +107 -0
- package/default/content/presets/context/DreamGen Role-Play V1 ChatML.json +0 -14
- package/default/content/presets/context/DreamGen Role-Play V1 Llama3.json +0 -14
- package/default/content/presets/instruct/DreamGen Role-Play V1 ChatML.json +0 -25
- package/default/content/presets/instruct/DreamGen Role-Play V1 Llama3.json +0 -25
- package/default/content/presets/kobold/Ace of Spades.json +0 -24
- package/default/content/presets/kobold/Basic Coherence.json +0 -24
- package/default/content/presets/kobold/Best Guess.json +0 -24
- package/default/content/presets/kobold/Coherent Creativity.json +0 -24
- package/default/content/presets/kobold/Genesis.json +0 -24
- package/default/content/presets/kobold/Godlike.json +0 -24
- package/default/content/presets/kobold/Good Winds.json +0 -24
- package/default/content/presets/kobold/Liminal Drift.json +0 -24
- package/default/content/presets/kobold/Low Rider.json +0 -24
- package/default/content/presets/kobold/Luna Moth.json +0 -24
- package/default/content/presets/kobold/Mayday.json +0 -24
- package/default/content/presets/kobold/Miro Bronze.json +0 -24
- package/default/content/presets/kobold/Miro Gold.json +0 -24
- package/default/content/presets/kobold/Miro Silver.json +0 -24
- package/default/content/presets/kobold/Ouroboros.json +0 -24
- package/default/content/presets/kobold/Pleasing Results.json +0 -24
- package/default/content/presets/kobold/Pro Writer.json +0 -24
- package/default/content/presets/kobold/Space Alien.json +0 -24
- package/default/content/presets/kobold/Storywriter.json +0 -24
- package/default/content/presets/kobold/Titanic.json +0 -24
- package/default/content/presets/kobold/simple-proxy-for-tavern.json +0 -24
- package/default/content/presets/textgen/Asterism.json +0 -85
- package/default/content/presets/textgen/Beam Search.json +0 -85
- package/default/content/presets/textgen/Big O.json +0 -85
- package/default/content/presets/textgen/Contrastive Search.json +0 -85
- package/default/content/presets/textgen/Divine Intellect.json +0 -85
- package/default/content/presets/textgen/Kobold (Godlike).json +0 -85
- package/default/content/presets/textgen/Kobold (Liminal Drift).json +0 -85
- package/default/content/presets/textgen/LLaMa-Precise.json +0 -85
- package/default/content/presets/textgen/Midnight Enigma.json +0 -85
- package/default/content/presets/textgen/Miro Bronze.json +0 -85
- package/default/content/presets/textgen/Miro Gold.json +0 -85
- package/default/content/presets/textgen/Miro Silver.json +0 -85
- package/default/content/presets/textgen/Mirostat.json +0 -85
- package/default/content/presets/textgen/Naive.json +0 -85
- package/default/content/presets/textgen/NovelAI (Best Guess).json +0 -85
- package/default/content/presets/textgen/NovelAI (Decadence).json +0 -85
- package/default/content/presets/textgen/NovelAI (Genesis).json +0 -85
- package/default/content/presets/textgen/NovelAI (Lycaenidae).json +0 -85
- package/default/content/presets/textgen/NovelAI (Ouroboros).json +0 -85
- package/default/content/presets/textgen/NovelAI (Sphinx Moth).json +0 -85
- package/default/content/presets/textgen/NovelAI (Storywriter).json +0 -85
- package/default/content/presets/textgen/Shortwave.json +0 -85
- package/default/content/presets/textgen/Simple-1.json +0 -85
- package/default/content/presets/textgen/Space Alien.json +0 -85
- package/default/content/presets/textgen/StarChat.json +0 -85
- package/default/content/presets/textgen/TFS-with-Top-A.json +0 -85
- package/default/content/presets/textgen/Titanic.json +0 -85
- package/default/content/presets/textgen/Yara.json +0 -85
- package/default/content/presets/textgen/simple-proxy-for-tavern.json +0 -85
- /package/tests/{sample.test.js → sample.e2e.js} +0 -0
package/CONTRIBUTING.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
## Getting the code ready
|
|
10
10
|
|
|
11
11
|
1. Register a GitHub account.
|
|
12
|
-
2. Fork this repository under your account.
|
|
12
|
+
2. Fork this repository under your account.
|
|
13
13
|
3. Clone the fork onto your machine.
|
|
14
14
|
4. Open the cloned repository in the code editor.
|
|
15
15
|
5. Create a git branch (recommended).
|
|
@@ -28,12 +28,25 @@
|
|
|
28
28
|
- Updating README.
|
|
29
29
|
- Updating GitHub Actions.
|
|
30
30
|
- Hotfixing a critical bug.
|
|
31
|
-
4. Project maintainers will test and can change your code before merging.
|
|
32
|
-
|
|
31
|
+
4. Project maintainers will test and can change your code before merging. To keep our workflow smooth, please ensure the following:
|
|
32
|
+
- The "Allow edits from maintainers" option is checked.
|
|
33
|
+
- Avoid force-pushing your branch once the PR is out of draft state.
|
|
34
|
+
5. To make sure that your contribution remains testable and reviewable, try not to exceed a soft limit of **200 lines of code** (both additions and deletions) per pull request. If you have more to contribute, split it into multiple pull requests. We can also consider creating a separate feature branch for more substantial changes, but please discuss it with the maintainers first.
|
|
35
|
+
6. Write at least somewhat meaningful PR descriptions and commit messages. There's no "right" way to do it, but the following may help with outlining a general structure:
|
|
33
36
|
- What is the reason for a change?
|
|
34
37
|
- What did you do to achieve this?
|
|
35
38
|
- How would a reviewer test the change?
|
|
36
|
-
|
|
39
|
+
7. English is the primary language of communication in this project. Please use only English when writing commit messages, PR descriptions, comments and other text. This does not apply to contributions to localization files.
|
|
40
|
+
8. Mind the license. Your contributions will be licensed under the GNU Affero General Public License. If you don't know what that implies, consult your lawyer.
|
|
41
|
+
|
|
42
|
+
## Use of AI coding assistance tools ("Vibe Coding")
|
|
43
|
+
|
|
44
|
+
We do not prohibit nor encourage the use of AI tools for coding assistance to help you write code, documentation, etc. This includes specialized IDEs, plugins and add-ons, chat interfaces, etc. However, please keep in mind the following:
|
|
45
|
+
|
|
46
|
+
- No matter who (or what) wrote the code, you are responsible for it. Make sure to carefully review and test everything before committing, and be ready to discuss and fix any issues that may arise during the review.
|
|
47
|
+
- Maintainers can reject reviewing and accepting PRs of very low quality, i.e. if the time to fix the issues exceeds the time to write the code from scratch.
|
|
48
|
+
- Avoid common mistakes attributed to AI tools, such as: adding/removing unrelated comments, excessive logging, unawareness of the project context and conventions, etc.
|
|
49
|
+
- You are allowed, but not required, to trigger AI tools that are added to the project by maintainers (Gemini, Copilot, Codex). Keep in mind that any feedback (comments, suggestions) that these tools generate is not a call to action; make sure to properly assess it before applying.
|
|
37
50
|
|
|
38
51
|
## Further reading
|
|
39
52
|
|
package/Dockerfile
CHANGED
package/config.yaml
CHANGED
|
@@ -82,18 +82,30 @@ requestProxy:
|
|
|
82
82
|
enableUserAccounts: false
|
|
83
83
|
# Enable discreet login mode: hides user list on the login screen
|
|
84
84
|
enableDiscreetLogin: false
|
|
85
|
-
# Enable's authlia based auto login. Only enable this if you
|
|
86
|
-
# have setup and installed Authelia as a middle-ware on your
|
|
87
|
-
# reverse proxy
|
|
88
|
-
# https://www.authelia.com/
|
|
89
|
-
# This will use auto login to an account with the same username
|
|
90
|
-
# as that used for authlia. (Ensure the username in authlia
|
|
91
|
-
# is an exact match in lowercase with that in sillytavern)
|
|
92
|
-
autheliaAuth: false
|
|
93
85
|
# If `basicAuthMode` and this are enabled then
|
|
94
86
|
# the username and passwords for basic auth are the same as those
|
|
95
87
|
# for the individual accounts
|
|
96
88
|
perUserBasicAuth: false
|
|
89
|
+
|
|
90
|
+
# -- SSO LOGIN CONFIGURATION --
|
|
91
|
+
sso:
|
|
92
|
+
# Enable's authlia based auto login. Only enable this if you
|
|
93
|
+
# have setup and installed Authelia as a middle-ware on your
|
|
94
|
+
# reverse proxy
|
|
95
|
+
# https://www.authelia.com/
|
|
96
|
+
# This will use auto login to an account with the same username
|
|
97
|
+
# as that used for authlia. (Ensure the username in authlia
|
|
98
|
+
# is an exact match in lowercase with that in sillytavern)
|
|
99
|
+
autheliaAuth: false
|
|
100
|
+
# Enable's authentik based auto login. Only enable this if you
|
|
101
|
+
# have setup and installed Authentik as a middle-ware on your
|
|
102
|
+
# reverse proxy.
|
|
103
|
+
# https://goauthentik.io/
|
|
104
|
+
# This will use auto login to an account with the same username
|
|
105
|
+
# as that used for authentik. (Ensure the username in authentik
|
|
106
|
+
# is an exact match in lowercase with that in sillytavern).
|
|
107
|
+
authentikAuth: false
|
|
108
|
+
|
|
97
109
|
# Host whitelist configuration. Recommended if you're using a listen mode
|
|
98
110
|
hostWhitelist:
|
|
99
111
|
# Enable or disable host whitelisting
|
package/default/config.yaml
CHANGED
|
@@ -82,18 +82,30 @@ requestProxy:
|
|
|
82
82
|
enableUserAccounts: false
|
|
83
83
|
# Enable discreet login mode: hides user list on the login screen
|
|
84
84
|
enableDiscreetLogin: false
|
|
85
|
-
# Enable's authlia based auto login. Only enable this if you
|
|
86
|
-
# have setup and installed Authelia as a middle-ware on your
|
|
87
|
-
# reverse proxy
|
|
88
|
-
# https://www.authelia.com/
|
|
89
|
-
# This will use auto login to an account with the same username
|
|
90
|
-
# as that used for authlia. (Ensure the username in authlia
|
|
91
|
-
# is an exact match in lowercase with that in sillytavern)
|
|
92
|
-
autheliaAuth: false
|
|
93
85
|
# If `basicAuthMode` and this are enabled then
|
|
94
86
|
# the username and passwords for basic auth are the same as those
|
|
95
87
|
# for the individual accounts
|
|
96
88
|
perUserBasicAuth: false
|
|
89
|
+
|
|
90
|
+
# -- SSO LOGIN CONFIGURATION --
|
|
91
|
+
sso:
|
|
92
|
+
# Enable's authlia based auto login. Only enable this if you
|
|
93
|
+
# have setup and installed Authelia as a middle-ware on your
|
|
94
|
+
# reverse proxy
|
|
95
|
+
# https://www.authelia.com/
|
|
96
|
+
# This will use auto login to an account with the same username
|
|
97
|
+
# as that used for authlia. (Ensure the username in authlia
|
|
98
|
+
# is an exact match in lowercase with that in sillytavern)
|
|
99
|
+
autheliaAuth: false
|
|
100
|
+
# Enable's authentik based auto login. Only enable this if you
|
|
101
|
+
# have setup and installed Authentik as a middle-ware on your
|
|
102
|
+
# reverse proxy.
|
|
103
|
+
# https://goauthentik.io/
|
|
104
|
+
# This will use auto login to an account with the same username
|
|
105
|
+
# as that used for authentik. (Ensure the username in authentik
|
|
106
|
+
# is an exact match in lowercase with that in sillytavern).
|
|
107
|
+
authentikAuth: false
|
|
108
|
+
|
|
97
109
|
# Host whitelist configuration. Recommended if you're using a listen mode
|
|
98
110
|
hostWhitelist:
|
|
99
111
|
# Enable or disable host whitelisting
|
|
@@ -139,98 +139,18 @@
|
|
|
139
139
|
"filename": "Char_Avatar_Comfy_Workflow.json",
|
|
140
140
|
"type": "workflow"
|
|
141
141
|
},
|
|
142
|
-
{
|
|
143
|
-
"filename": "presets/kobold/Ace of Spades.json",
|
|
144
|
-
"type": "kobold_preset"
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
"filename": "presets/kobold/Basic Coherence.json",
|
|
148
|
-
"type": "kobold_preset"
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
"filename": "presets/kobold/Best Guess.json",
|
|
152
|
-
"type": "kobold_preset"
|
|
153
|
-
},
|
|
154
|
-
{
|
|
155
|
-
"filename": "presets/kobold/Coherent Creativity.json",
|
|
156
|
-
"type": "kobold_preset"
|
|
157
|
-
},
|
|
158
142
|
{
|
|
159
143
|
"filename": "presets/kobold/Deterministic.json",
|
|
160
144
|
"type": "kobold_preset"
|
|
161
145
|
},
|
|
162
146
|
{
|
|
163
|
-
"filename": "presets/kobold/
|
|
164
|
-
"type": "kobold_preset"
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
"filename": "presets/kobold/Godlike.json",
|
|
168
|
-
"type": "kobold_preset"
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
"filename": "presets/kobold/Good Winds.json",
|
|
172
|
-
"type": "kobold_preset"
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
"filename": "presets/kobold/Liminal Drift.json",
|
|
176
|
-
"type": "kobold_preset"
|
|
177
|
-
},
|
|
178
|
-
{
|
|
179
|
-
"filename": "presets/kobold/Low Rider.json",
|
|
180
|
-
"type": "kobold_preset"
|
|
181
|
-
},
|
|
182
|
-
{
|
|
183
|
-
"filename": "presets/kobold/Luna Moth.json",
|
|
184
|
-
"type": "kobold_preset"
|
|
185
|
-
},
|
|
186
|
-
{
|
|
187
|
-
"filename": "presets/kobold/Mayday.json",
|
|
188
|
-
"type": "kobold_preset"
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
"filename": "presets/kobold/Miro Bronze.json",
|
|
192
|
-
"type": "kobold_preset"
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
"filename": "presets/kobold/Miro Gold.json",
|
|
196
|
-
"type": "kobold_preset"
|
|
197
|
-
},
|
|
198
|
-
{
|
|
199
|
-
"filename": "presets/kobold/Miro Silver.json",
|
|
200
|
-
"type": "kobold_preset"
|
|
201
|
-
},
|
|
202
|
-
{
|
|
203
|
-
"filename": "presets/kobold/Ouroboros.json",
|
|
204
|
-
"type": "kobold_preset"
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
"filename": "presets/kobold/Pleasing Results.json",
|
|
208
|
-
"type": "kobold_preset"
|
|
209
|
-
},
|
|
210
|
-
{
|
|
211
|
-
"filename": "presets/kobold/Pro Writer.json",
|
|
147
|
+
"filename": "presets/kobold/Neutral.json",
|
|
212
148
|
"type": "kobold_preset"
|
|
213
149
|
},
|
|
214
150
|
{
|
|
215
151
|
"filename": "presets/kobold/RecoveredRuins.json",
|
|
216
152
|
"type": "kobold_preset"
|
|
217
153
|
},
|
|
218
|
-
{
|
|
219
|
-
"filename": "presets/kobold/Space Alien.json",
|
|
220
|
-
"type": "kobold_preset"
|
|
221
|
-
},
|
|
222
|
-
{
|
|
223
|
-
"filename": "presets/kobold/Storywriter.json",
|
|
224
|
-
"type": "kobold_preset"
|
|
225
|
-
},
|
|
226
|
-
{
|
|
227
|
-
"filename": "presets/kobold/TFS-with-Top-A.json",
|
|
228
|
-
"type": "kobold_preset"
|
|
229
|
-
},
|
|
230
|
-
{
|
|
231
|
-
"filename": "presets/kobold/Titanic.json",
|
|
232
|
-
"type": "kobold_preset"
|
|
233
|
-
},
|
|
234
154
|
{
|
|
235
155
|
"filename": "presets/kobold/Universal-Creative.json",
|
|
236
156
|
"type": "kobold_preset"
|
|
@@ -243,10 +163,6 @@
|
|
|
243
163
|
"filename": "presets/kobold/Universal-Super-Creative.json",
|
|
244
164
|
"type": "kobold_preset"
|
|
245
165
|
},
|
|
246
|
-
{
|
|
247
|
-
"filename": "presets/kobold/simple-proxy-for-tavern.json",
|
|
248
|
-
"type": "kobold_preset"
|
|
249
|
-
},
|
|
250
166
|
{
|
|
251
167
|
"filename": "presets/novel/Asper-Kayra.json",
|
|
252
168
|
"type": "novel_preset"
|
|
@@ -343,22 +259,6 @@
|
|
|
343
259
|
"filename": "presets/novel/Erato-Zany Scribe.json",
|
|
344
260
|
"type": "novel_preset"
|
|
345
261
|
},
|
|
346
|
-
{
|
|
347
|
-
"filename": "presets/textgen/Asterism.json",
|
|
348
|
-
"type": "textgen_preset"
|
|
349
|
-
},
|
|
350
|
-
{
|
|
351
|
-
"filename": "presets/textgen/Beam Search.json",
|
|
352
|
-
"type": "textgen_preset"
|
|
353
|
-
},
|
|
354
|
-
{
|
|
355
|
-
"filename": "presets/textgen/Big O.json",
|
|
356
|
-
"type": "textgen_preset"
|
|
357
|
-
},
|
|
358
|
-
{
|
|
359
|
-
"filename": "presets/textgen/Contrastive Search.json",
|
|
360
|
-
"type": "textgen_preset"
|
|
361
|
-
},
|
|
362
262
|
{
|
|
363
263
|
"filename": "presets/textgen/Default.json",
|
|
364
264
|
"type": "textgen_preset"
|
|
@@ -368,99 +268,7 @@
|
|
|
368
268
|
"type": "textgen_preset"
|
|
369
269
|
},
|
|
370
270
|
{
|
|
371
|
-
"filename": "presets/textgen/
|
|
372
|
-
"type": "textgen_preset"
|
|
373
|
-
},
|
|
374
|
-
{
|
|
375
|
-
"filename": "presets/textgen/Kobold (Godlike).json",
|
|
376
|
-
"type": "textgen_preset"
|
|
377
|
-
},
|
|
378
|
-
{
|
|
379
|
-
"filename": "presets/textgen/Kobold (Liminal Drift).json",
|
|
380
|
-
"type": "textgen_preset"
|
|
381
|
-
},
|
|
382
|
-
{
|
|
383
|
-
"filename": "presets/textgen/LLaMa-Precise.json",
|
|
384
|
-
"type": "textgen_preset"
|
|
385
|
-
},
|
|
386
|
-
{
|
|
387
|
-
"filename": "presets/textgen/Midnight Enigma.json",
|
|
388
|
-
"type": "textgen_preset"
|
|
389
|
-
},
|
|
390
|
-
{
|
|
391
|
-
"filename": "presets/textgen/Miro Bronze.json",
|
|
392
|
-
"type": "textgen_preset"
|
|
393
|
-
},
|
|
394
|
-
{
|
|
395
|
-
"filename": "presets/textgen/Miro Gold.json",
|
|
396
|
-
"type": "textgen_preset"
|
|
397
|
-
},
|
|
398
|
-
{
|
|
399
|
-
"filename": "presets/textgen/Miro Silver.json",
|
|
400
|
-
"type": "textgen_preset"
|
|
401
|
-
},
|
|
402
|
-
{
|
|
403
|
-
"filename": "presets/textgen/Mirostat.json",
|
|
404
|
-
"type": "textgen_preset"
|
|
405
|
-
},
|
|
406
|
-
{
|
|
407
|
-
"filename": "presets/textgen/Naive.json",
|
|
408
|
-
"type": "textgen_preset"
|
|
409
|
-
},
|
|
410
|
-
{
|
|
411
|
-
"filename": "presets/textgen/NovelAI (Best Guess).json",
|
|
412
|
-
"type": "textgen_preset"
|
|
413
|
-
},
|
|
414
|
-
{
|
|
415
|
-
"filename": "presets/textgen/NovelAI (Decadence).json",
|
|
416
|
-
"type": "textgen_preset"
|
|
417
|
-
},
|
|
418
|
-
{
|
|
419
|
-
"filename": "presets/textgen/NovelAI (Genesis).json",
|
|
420
|
-
"type": "textgen_preset"
|
|
421
|
-
},
|
|
422
|
-
{
|
|
423
|
-
"filename": "presets/textgen/NovelAI (Lycaenidae).json",
|
|
424
|
-
"type": "textgen_preset"
|
|
425
|
-
},
|
|
426
|
-
{
|
|
427
|
-
"filename": "presets/textgen/NovelAI (Ouroboros).json",
|
|
428
|
-
"type": "textgen_preset"
|
|
429
|
-
},
|
|
430
|
-
{
|
|
431
|
-
"filename": "presets/textgen/NovelAI (Pleasing Results).json",
|
|
432
|
-
"type": "textgen_preset"
|
|
433
|
-
},
|
|
434
|
-
{
|
|
435
|
-
"filename": "presets/textgen/NovelAI (Sphinx Moth).json",
|
|
436
|
-
"type": "textgen_preset"
|
|
437
|
-
},
|
|
438
|
-
{
|
|
439
|
-
"filename": "presets/textgen/NovelAI (Storywriter).json",
|
|
440
|
-
"type": "textgen_preset"
|
|
441
|
-
},
|
|
442
|
-
{
|
|
443
|
-
"filename": "presets/textgen/Shortwave.json",
|
|
444
|
-
"type": "textgen_preset"
|
|
445
|
-
},
|
|
446
|
-
{
|
|
447
|
-
"filename": "presets/textgen/Simple-1.json",
|
|
448
|
-
"type": "textgen_preset"
|
|
449
|
-
},
|
|
450
|
-
{
|
|
451
|
-
"filename": "presets/textgen/Space Alien.json",
|
|
452
|
-
"type": "textgen_preset"
|
|
453
|
-
},
|
|
454
|
-
{
|
|
455
|
-
"filename": "presets/textgen/StarChat.json",
|
|
456
|
-
"type": "textgen_preset"
|
|
457
|
-
},
|
|
458
|
-
{
|
|
459
|
-
"filename": "presets/textgen/TFS-with-Top-A.json",
|
|
460
|
-
"type": "textgen_preset"
|
|
461
|
-
},
|
|
462
|
-
{
|
|
463
|
-
"filename": "presets/textgen/Titanic.json",
|
|
271
|
+
"filename": "presets/textgen/Neutral.json",
|
|
464
272
|
"type": "textgen_preset"
|
|
465
273
|
},
|
|
466
274
|
{
|
|
@@ -475,14 +283,6 @@
|
|
|
475
283
|
"filename": "presets/textgen/Universal-Super-Creative.json",
|
|
476
284
|
"type": "textgen_preset"
|
|
477
285
|
},
|
|
478
|
-
{
|
|
479
|
-
"filename": "presets/textgen/Yara.json",
|
|
480
|
-
"type": "textgen_preset"
|
|
481
|
-
},
|
|
482
|
-
{
|
|
483
|
-
"filename": "presets/textgen/simple-proxy-for-tavern.json",
|
|
484
|
-
"type": "textgen_preset"
|
|
485
|
-
},
|
|
486
286
|
{
|
|
487
287
|
"filename": "presets/openai/Default.json",
|
|
488
288
|
"type": "openai_preset"
|
|
@@ -507,14 +307,6 @@
|
|
|
507
307
|
"filename": "presets/context/Default.json",
|
|
508
308
|
"type": "context"
|
|
509
309
|
},
|
|
510
|
-
{
|
|
511
|
-
"filename": "presets/context/DreamGen Role-Play V1 ChatML.json",
|
|
512
|
-
"type": "context"
|
|
513
|
-
},
|
|
514
|
-
{
|
|
515
|
-
"filename": "presets/context/DreamGen Role-Play V1 Llama3.json",
|
|
516
|
-
"type": "context"
|
|
517
|
-
},
|
|
518
310
|
{
|
|
519
311
|
"filename": "presets/context/Libra-32B.json",
|
|
520
312
|
"type": "context"
|
|
@@ -587,14 +379,6 @@
|
|
|
587
379
|
"filename": "presets/instruct/ChatML.json",
|
|
588
380
|
"type": "instruct"
|
|
589
381
|
},
|
|
590
|
-
{
|
|
591
|
-
"filename": "presets/instruct/DreamGen Role-Play V1 ChatML.json",
|
|
592
|
-
"type": "instruct"
|
|
593
|
-
},
|
|
594
|
-
{
|
|
595
|
-
"filename": "presets/instruct/DreamGen Role-Play V1 Llama3.json",
|
|
596
|
-
"type": "instruct"
|
|
597
|
-
},
|
|
598
382
|
{
|
|
599
383
|
"filename": "presets/instruct/Koala.json",
|
|
600
384
|
"type": "instruct"
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"temp": 0,
|
|
3
|
-
"rep_pen": 1
|
|
4
|
-
"rep_pen_range":
|
|
3
|
+
"rep_pen": 1,
|
|
4
|
+
"rep_pen_range": 0,
|
|
5
5
|
"top_p": 0,
|
|
6
|
+
"min_p": 0,
|
|
6
7
|
"top_a": 0,
|
|
7
8
|
"top_k": 1,
|
|
8
9
|
"typical": 1,
|
|
@@ -20,5 +21,6 @@
|
|
|
20
21
|
"mirostat": 0,
|
|
21
22
|
"mirostat_tau": 5,
|
|
22
23
|
"mirostat_eta": 0.1,
|
|
24
|
+
"use_default_badwordsids": false,
|
|
23
25
|
"grammar": ""
|
|
24
|
-
}
|
|
26
|
+
}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
"temp":
|
|
3
|
-
"rep_pen": 1
|
|
4
|
-
"rep_pen_range":
|
|
2
|
+
"temp": 1,
|
|
3
|
+
"rep_pen": 1,
|
|
4
|
+
"rep_pen_range": 0,
|
|
5
5
|
"top_p": 1,
|
|
6
|
-
"
|
|
6
|
+
"min_p": 0,
|
|
7
|
+
"top_a": 0,
|
|
7
8
|
"top_k": 0,
|
|
8
9
|
"typical": 1,
|
|
9
|
-
"tfs":
|
|
10
|
+
"tfs": 1,
|
|
10
11
|
"rep_pen_slope": 0,
|
|
11
12
|
"sampler_order": [
|
|
12
13
|
6,
|
|
@@ -20,5 +21,6 @@
|
|
|
20
21
|
"mirostat": 0,
|
|
21
22
|
"mirostat_tau": 5,
|
|
22
23
|
"mirostat_eta": 0.1,
|
|
24
|
+
"use_default_badwordsids": false,
|
|
23
25
|
"grammar": ""
|
|
24
|
-
}
|
|
26
|
+
}
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
"rep_pen": 1.1,
|
|
4
4
|
"rep_pen_range": 600,
|
|
5
5
|
"top_p": 0.95,
|
|
6
|
+
"min_p": 0.01,
|
|
6
7
|
"top_a": 0,
|
|
7
8
|
"top_k": 0,
|
|
8
9
|
"typical": 1,
|
|
@@ -20,5 +21,6 @@
|
|
|
20
21
|
"mirostat": 0,
|
|
21
22
|
"mirostat_tau": 5,
|
|
22
23
|
"mirostat_eta": 0.1,
|
|
24
|
+
"use_default_badwordsids": false,
|
|
23
25
|
"grammar": ""
|
|
24
|
-
}
|
|
26
|
+
}
|
|
@@ -1,20 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"chat_completion_source": "openai",
|
|
3
3
|
"openai_model": "gpt-4-turbo",
|
|
4
|
-
"claude_model": "claude-
|
|
4
|
+
"claude_model": "claude-sonnet-4-5",
|
|
5
5
|
"openrouter_model": "OR_Website",
|
|
6
6
|
"openrouter_use_fallback": false,
|
|
7
7
|
"openrouter_group_models": false,
|
|
8
8
|
"openrouter_sort_models": "alphabetically",
|
|
9
9
|
"ai21_model": "jamba-large",
|
|
10
10
|
"mistralai_model": "mistral-large-latest",
|
|
11
|
+
"electronhub_model": "gpt-4o-mini",
|
|
12
|
+
"electronhub_sort_models": "alphabetically",
|
|
13
|
+
"electronhub_group_models": false,
|
|
11
14
|
"custom_model": "",
|
|
12
15
|
"custom_url": "",
|
|
13
16
|
"custom_include_body": "",
|
|
14
17
|
"custom_exclude_body": "",
|
|
15
18
|
"custom_include_headers": "",
|
|
16
|
-
"google_model": "gemini-pro",
|
|
17
|
-
"vertexai_model": "gemini-2.
|
|
19
|
+
"google_model": "gemini-2.5-pro",
|
|
20
|
+
"vertexai_model": "gemini-2.5-pro",
|
|
18
21
|
"temperature": 1,
|
|
19
22
|
"frequency_penalty": 0,
|
|
20
23
|
"presence_penalty": 0,
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
|
-
"temp":
|
|
2
|
+
"temp": 1,
|
|
3
3
|
"temperature_last": true,
|
|
4
|
-
"top_p": 0.
|
|
5
|
-
"top_k":
|
|
4
|
+
"top_p": 0.95,
|
|
5
|
+
"top_k": 0,
|
|
6
6
|
"top_a": 0,
|
|
7
7
|
"tfs": 1,
|
|
8
8
|
"epsilon_cutoff": 0,
|
|
9
9
|
"eta_cutoff": 0,
|
|
10
10
|
"typical_p": 1,
|
|
11
|
-
"min_p": 0,
|
|
12
|
-
"rep_pen": 1.
|
|
11
|
+
"min_p": 0.01,
|
|
12
|
+
"rep_pen": 1.1,
|
|
13
13
|
"rep_pen_range": 0,
|
|
14
14
|
"rep_pen_decay": 0,
|
|
15
15
|
"rep_pen_slope": 1,
|
|
@@ -44,12 +44,17 @@
|
|
|
44
44
|
"guidance_scale": 1,
|
|
45
45
|
"negative_prompt": "",
|
|
46
46
|
"grammar_string": "",
|
|
47
|
-
"json_schema":
|
|
47
|
+
"json_schema": null,
|
|
48
48
|
"banned_tokens": "",
|
|
49
49
|
"sampler_priority": [
|
|
50
|
+
"repetition_penalty",
|
|
51
|
+
"presence_penalty",
|
|
52
|
+
"frequency_penalty",
|
|
53
|
+
"dry",
|
|
50
54
|
"temperature",
|
|
51
55
|
"dynamic_temperature",
|
|
52
56
|
"quadratic_sampling",
|
|
57
|
+
"top_n_sigma",
|
|
53
58
|
"top_k",
|
|
54
59
|
"top_p",
|
|
55
60
|
"typical_p",
|
|
@@ -58,16 +63,40 @@
|
|
|
58
63
|
"tfs",
|
|
59
64
|
"top_a",
|
|
60
65
|
"min_p",
|
|
61
|
-
"mirostat"
|
|
66
|
+
"mirostat",
|
|
67
|
+
"xtc",
|
|
68
|
+
"encoder_repetition_penalty",
|
|
69
|
+
"no_repeat_ngram"
|
|
62
70
|
],
|
|
63
71
|
"samplers": [
|
|
72
|
+
"penalties",
|
|
73
|
+
"dry",
|
|
74
|
+
"top_n_sigma",
|
|
64
75
|
"top_k",
|
|
76
|
+
"typ_p",
|
|
65
77
|
"tfs_z",
|
|
66
78
|
"typical_p",
|
|
79
|
+
"xtc",
|
|
67
80
|
"top_p",
|
|
68
81
|
"min_p",
|
|
69
82
|
"temperature"
|
|
70
83
|
],
|
|
84
|
+
"samplers_priorities": [
|
|
85
|
+
"dry",
|
|
86
|
+
"penalties",
|
|
87
|
+
"no_repeat_ngram",
|
|
88
|
+
"temperature",
|
|
89
|
+
"top_nsigma",
|
|
90
|
+
"top_p_top_k",
|
|
91
|
+
"top_a",
|
|
92
|
+
"min_p",
|
|
93
|
+
"tfs",
|
|
94
|
+
"eta_cutoff",
|
|
95
|
+
"epsilon_cutoff",
|
|
96
|
+
"typical_p",
|
|
97
|
+
"quadratic",
|
|
98
|
+
"xtc"
|
|
99
|
+
],
|
|
71
100
|
"ignore_eos_token": false,
|
|
72
101
|
"spaces_between_special_tokens": true,
|
|
73
102
|
"speculative_ngram": false,
|
|
@@ -81,5 +110,9 @@
|
|
|
81
110
|
5
|
|
82
111
|
],
|
|
83
112
|
"logit_bias": [],
|
|
113
|
+
"xtc_threshold": 0.1,
|
|
114
|
+
"xtc_probability": 0,
|
|
115
|
+
"nsigma": 0,
|
|
116
|
+
"min_keep": 0,
|
|
84
117
|
"rep_pen_size": 0
|
|
85
118
|
}
|