Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions tools/server/public/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion tools/server/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div style="display: contents">
<script>
{
__sveltekit_1ppa22i = {
__sveltekit_1610ad9 = {
base: new URL('.', location).pathname.slice(0, -1)
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,12 @@ export const SYNCABLE_PARAMETERS: SyncableParameter[] = [
},
{ key: 'max_tokens', serverKey: 'max_tokens', type: SyncableParameterType.NUMBER, canSync: true },
{ key: 'samplers', serverKey: 'samplers', type: SyncableParameterType.STRING, canSync: true },
{
key: 'backend_sampling',
serverKey: 'backend_sampling',
type: SyncableParameterType.BOOLEAN,
canSync: true
},
{
key: 'pasteLongTextToFileLen',
serverKey: 'pasteLongTextToFileLen',
Expand Down
3 changes: 1 addition & 2 deletions tools/server/webui/src/lib/stores/chat.svelte.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1610,8 +1610,7 @@ class ChatStore {

if (currentConfig.samplers) apiOptions.samplers = currentConfig.samplers;

if (currentConfig.backend_sampling)
apiOptions.backend_sampling = currentConfig.backend_sampling;
apiOptions.backend_sampling = currentConfig.backend_sampling;

if (currentConfig.custom) apiOptions.custom = currentConfig.custom;

Expand Down
Loading