2024-02-05 17:58:54 +08:00
< script lang = "ts" >
2024-03-01 17:18:07 +08:00
import { toast } from 'svelte-sonner';
2024-03-01 12:40:36 +08:00
import { createEventDispatcher , onMount , getContext } from 'svelte';
2024-03-07 18:40:30 +08:00
import { getLanguages } from '$lib/i18n';
2024-02-05 17:58:54 +08:00
const dispatch = createEventDispatcher();
2024-06-11 04:29:09 +08:00
import { models , settings , theme , user } from '$lib/stores';
2024-02-05 17:58:54 +08:00
2024-03-01 12:40:36 +08:00
const i18n = getContext('i18n');
2024-02-22 05:29:59 +08:00
import AdvancedParams from './Advanced/AdvancedParams.svelte';
2024-02-05 17:58:54 +08:00
export let saveSettings: Function;
2024-05-24 17:17:48 +08:00
export let getModels: Function;
2024-02-05 17:58:54 +08:00
// General
2024-03-28 07:04:34 +08:00
let themes = ['dark', 'light', 'rose-pine dark', 'rose-pine-dawn light', 'oled-dark'];
2024-03-17 14:14:13 +08:00
let selectedTheme = 'system';
2024-03-17 16:00:38 +08:00
2024-08-20 08:44:09 +08:00
let languages: Awaited< ReturnType < typeof getLanguages > > = [];
2024-03-01 12:40:36 +08:00
let lang = $i18n.language;
2024-02-05 17:58:54 +08:00
let notificationEnabled = false;
let system = '';
2024-02-22 05:29:59 +08:00
let showAdvanced = false;
2024-02-05 17:58:54 +08:00
const toggleNotification = async () => {
const permission = await Notification.requestPermission();
if (permission === 'granted') {
notificationEnabled = !notificationEnabled;
saveSettings({ notificationEnabled : notificationEnabled } );
} else {
toast.error(
2024-06-25 00:12:39 +08:00
$i18n.t(
2024-06-25 00:21:29 +08:00
'Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.'
)
2024-02-05 17:58:54 +08:00
);
}
};
2024-02-22 05:29:59 +08:00
// Advanced
let requestFormat = '';
2024-08-20 08:44:09 +08:00
let keepAlive: string | null = null;
2024-02-05 17:58:54 +08:00
2024-05-25 11:29:13 +08:00
let params = {
2024-02-22 05:29:59 +08:00
// Advanced
2024-09-24 18:49:35 +08:00
stream_response: null,
2024-06-11 04:29:09 +08:00
seed: null,
temperature: null,
frequency_penalty: null,
repeat_last_n: null,
mirostat: null,
mirostat_eta: null,
mirostat_tau: null,
top_k: null,
top_p: null,
2024-11-26 08:11:49 +08:00
min_p: null,
2024-05-25 17:26:26 +08:00
stop: null,
2024-06-11 04:29:09 +08:00
tfs_z: null,
num_ctx: null,
2024-06-14 13:31:26 +08:00
num_batch: null,
num_keep: null,
2024-08-20 07:47:20 +08:00
max_tokens: null,
num_gpu: null
2024-02-05 17:58:54 +08:00
};
2024-02-22 05:29:59 +08:00
const toggleRequestFormat = async () => {
if (requestFormat === '') {
requestFormat = 'json';
} else {
requestFormat = '';
2024-02-05 17:58:54 +08:00
}
2024-02-22 05:29:59 +08:00
saveSettings({ requestFormat : requestFormat !== '' ? requestFormat : undefined } );
};
onMount(async () => {
2024-03-18 15:31:43 +08:00
selectedTheme = localStorage.theme ?? 'system';
2024-03-17 14:14:13 +08:00
2024-03-07 18:40:30 +08:00
languages = await getLanguages();
2024-02-05 17:58:54 +08:00
2024-05-27 13:47:42 +08:00
notificationEnabled = $settings.notificationEnabled ?? false;
system = $settings.system ?? '';
2024-02-22 05:29:59 +08:00
2024-05-27 13:47:42 +08:00
requestFormat = $settings.requestFormat ?? '';
keepAlive = $settings.keepAlive ?? null;
2024-02-22 05:29:59 +08:00
2024-05-27 13:47:42 +08:00
params = { ... params , ... $settings . params } ;
params.stop = $settings?.params?.stop ? ($settings?.params?.stop ?? []).join(',') : null;
2024-02-05 17:58:54 +08:00
});
2024-03-17 14:14:13 +08:00
2024-03-18 15:27:48 +08:00
const applyTheme = (_theme: string) => {
2024-03-28 07:19:02 +08:00
let themeToApply = _theme === 'oled-dark' ? 'dark' : _theme;
2024-03-28 07:04:34 +08:00
2024-03-18 15:27:48 +08:00
if (_theme === 'system') {
themeToApply = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
}
2024-03-28 07:04:34 +08:00
if (themeToApply === 'dark' && !_theme.includes('oled')) {
2024-07-09 11:13:16 +08:00
document.documentElement.style.setProperty('--color-gray-800', '#333');
document.documentElement.style.setProperty('--color-gray-850', '#262626');
2024-03-28 01:50:30 +08:00
document.documentElement.style.setProperty('--color-gray-900', '#171717');
2024-03-28 13:39:47 +08:00
document.documentElement.style.setProperty('--color-gray-950', '#0d0d0d');
2024-03-28 01:50:30 +08:00
}
2024-03-18 15:27:48 +08:00
themes
.filter((e) => e !== themeToApply)
.forEach((e) => {
e.split(' ').forEach((e) => {
document.documentElement.classList.remove(e);
});
});
themeToApply.split(' ').forEach((e) => {
document.documentElement.classList.add(e);
});
2024-09-08 23:38:49 +08:00
const metaThemeColor = document.querySelector('meta[name="theme-color"]');
if (metaThemeColor) {
if (_theme.includes('system')) {
const systemTheme = window.matchMedia('(prefers-color-scheme: dark)').matches
? 'dark'
: 'light';
console.log('Setting system meta theme color: ' + systemTheme);
metaThemeColor.setAttribute('content', systemTheme === 'light' ? '#ffffff' : '#171717');
} else {
console.log('Setting meta theme color: ' + _theme);
metaThemeColor.setAttribute(
'content',
_theme === 'dark'
? '#171717'
: _theme === 'oled-dark'
? '#000000'
: _theme === 'her'
? '#983724'
: '#ffffff'
);
}
}
2024-03-18 15:27:48 +08:00
console.log(_theme);
};
const themeChangeHandler = (_theme: string) => {
2024-03-28 07:04:34 +08:00
theme.set(_theme);
localStorage.setItem('theme', _theme);
if (_theme.includes('oled')) {
2024-07-09 14:30:59 +08:00
document.documentElement.style.setProperty('--color-gray-800', '#101010');
document.documentElement.style.setProperty('--color-gray-850', '#050505');
2024-03-28 01:50:30 +08:00
document.documentElement.style.setProperty('--color-gray-900', '#000000');
2024-03-28 13:39:47 +08:00
document.documentElement.style.setProperty('--color-gray-950', '#000000');
2024-03-28 07:04:34 +08:00
document.documentElement.classList.add('dark');
2024-03-28 01:50:30 +08:00
}
2024-03-28 07:04:34 +08:00
applyTheme(_theme);
2024-03-18 15:27:48 +08:00
};
2024-02-05 17:58:54 +08:00
< / script >
2024-02-22 05:29:59 +08:00
< div class = "flex flex-col h-full justify-between text-sm" >
2024-11-13 14:43:18 +08:00
< div class = " overflow-y-scroll max-h-[28rem] lg:max-h-full" >
2024-02-22 05:29:59 +08:00
< div class = "" >
2024-03-03 04:38:51 +08:00
< div class = " mb-1 text-sm font-medium" > { $i18n . t ( 'WebUI Settings' )} </ div >
2024-02-22 05:29:59 +08:00
2024-03-16 17:24:32 +08:00
< div class = "flex w-full justify-between" >
2024-03-03 04:38:51 +08:00
< div class = " self-center text-xs font-medium" > { $i18n . t ( 'Theme' )} </ div >
2024-02-22 05:29:59 +08:00
< div class = "flex items-center relative" >
< select
2024-03-04 18:15:54 +08:00
class=" dark:bg-gray-900 w-fit pr-8 rounded py-2 px-2 text-xs bg-transparent outline-none text-right"
2024-03-17 14:27:08 +08:00
bind:value={ selectedTheme }
2024-02-22 05:29:59 +08:00
placeholder="Select a theme"
2024-03-18 15:27:48 +08:00
on:change={() => themeChangeHandler ( selectedTheme )}
2024-02-22 05:29:59 +08:00
>
2024-03-17 14:54:18 +08:00
< option value = "system" > ⚙️ { $i18n . t ( 'System' )} </ option >
2024-03-04 18:15:54 +08:00
< option value = "dark" > 🌑 { $i18n . t ( 'Dark' )} </ option >
2024-03-28 07:19:57 +08:00
< option value = "oled-dark" > 🌃 { $i18n . t ( 'OLED Dark' )} </ option >
2024-03-04 18:15:54 +08:00
< option value = "light" > ☀️ { $i18n . t ( 'Light' )} </ option >
2024-06-12 15:05:20 +08:00
< option value = "her" > 🌷 Her< / option >
2024-04-27 10:33:39 +08:00
<!-- <option value="rose - pine dark">🪻 {$i18n.t('Rosé Pine')}</option>
< option value = "rose-pine-dawn light" > 🌷 { $i18n . t ( 'Rosé Pine Dawn' )} </ option > -->
2024-02-22 05:29:59 +08:00
< / select >
< / div >
2024-02-05 17:58:54 +08:00
< / div >
2024-03-16 17:24:32 +08:00
< div class = " flex w-full justify-between" >
2024-03-03 04:38:51 +08:00
< div class = " self-center text-xs font-medium" > { $i18n . t ( 'Language' )} </ div >
2024-03-01 12:40:36 +08:00
< div class = "flex items-center relative" >
< select
2024-03-16 17:16:24 +08:00
class=" dark:bg-gray-900 w-fit pr-8 rounded py-2 px-2 text-xs bg-transparent outline-none text-right"
2024-03-01 12:40:36 +08:00
bind:value={ lang }
placeholder="Select a language"
on:change={( e ) => {
$i18n.changeLanguage(lang);
}}
>
2024-03-07 17:37:05 +08:00
{ #each languages as language }
< option value = { language [ 'code' ]} > { language [ 'title' ]} </option >
2024-03-01 12:40:36 +08:00
{ /each }
2024-02-22 05:29:59 +08:00
< / select >
< / div >
2024-02-05 17:58:54 +08:00
< / div >
2024-03-14 19:10:04 +08:00
{ #if $i18n . language === 'en-US' }
2024-03-07 23:02:14 +08:00
< div class = "mb-2 text-xs text-gray-400 dark:text-gray-500" >
2024-03-16 17:24:32 +08:00
Couldn't find your language?
2024-03-07 23:02:14 +08:00
< a
class=" text-gray-300 font-medium underline"
href="https://github.com/open-webui/open-webui/blob/main/docs/CONTRIBUTING.md#-translations-and-internationalization"
target="_blank"
>
2024-03-16 17:24:32 +08:00
Help us translate Open WebUI!
2024-03-07 23:02:14 +08:00
< / a >
< / div >
{ /if }
2024-02-05 17:58:54 +08:00
2024-02-22 05:29:59 +08:00
< div >
< div class = " py-0.5 flex w-full justify-between" >
2024-04-07 04:29:39 +08:00
< div class = " self-center text-xs font-medium" > { $i18n . t ( 'Notifications' )} </ div >
2024-02-05 17:58:54 +08:00
2024-02-22 05:29:59 +08:00
< button
class="p-1 px-3 text-xs flex rounded transition"
on:click={() => {
toggleNotification();
}}
type="button"
>
{ #if notificationEnabled === true }
2024-03-03 04:38:51 +08:00
< span class = "ml-2 self-center" > { $i18n . t ( 'On' )} </ span >
2024-02-22 05:29:59 +08:00
{ : else }
2024-03-03 04:38:51 +08:00
< span class = "ml-2 self-center" > { $i18n . t ( 'Off' )} </ span >
2024-02-22 05:29:59 +08:00
{ /if }
< / button >
< / div >
2024-02-05 17:58:54 +08:00
< / div >
< / div >
2024-06-09 17:01:03 +08:00
< hr class = " dark:border-gray-850 my-3" / >
2024-02-22 05:29:59 +08:00
2024-02-05 17:58:54 +08:00
< div >
2024-03-03 04:38:51 +08:00
< div class = " my-2.5 text-sm font-medium" > { $i18n . t ( 'System Prompt' )} </ div >
2024-02-22 05:29:59 +08:00
< textarea
bind:value={ system }
2024-03-09 05:58:56 +08:00
class="w-full rounded-lg p-4 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none resize-none"
2024-02-22 05:29:59 +08:00
rows="4"
/>
< / div >
< div class = "mt-2 space-y-3 pr-1.5" >
< div class = "flex justify-between items-center text-sm" >
2024-03-03 04:38:51 +08:00
< div class = " font-medium" > { $i18n . t ( 'Advanced Parameters' )} </ div >
2024-02-05 17:58:54 +08:00
< button
2024-02-22 05:29:59 +08:00
class=" text-xs font-medium text-gray-500"
type="button"
2024-02-05 17:58:54 +08:00
on:click={() => {
2024-02-22 05:29:59 +08:00
showAdvanced = !showAdvanced;
2024-03-03 19:22:29 +08:00
}}>{ showAdvanced ? $i18n . t ( 'Hide' ) : $i18n . t ( 'Show' )} < /button
2024-02-05 17:58:54 +08:00
>
< / div >
2024-02-22 05:29:59 +08:00
{ #if showAdvanced }
2024-06-11 04:29:09 +08:00
< AdvancedParams admin = { $user ? . role === 'admin' } bind:params />
2024-06-09 17:01:03 +08:00
< hr class = " dark:border-gray-850" / >
2024-02-22 05:29:59 +08:00
< div class = " py-1 w-full justify-between" >
< div class = "flex w-full justify-between" >
2024-03-03 04:38:51 +08:00
< div class = " self-center text-xs font-medium" > { $i18n . t ( 'Keep Alive' )} </ div >
2024-02-22 05:29:59 +08:00
< button
class="p-1 px-3 text-xs flex rounded transition"
type="button"
on:click={() => {
keepAlive = keepAlive === null ? '5m' : null;
}}
>
{ #if keepAlive === null }
2024-03-03 04:38:51 +08:00
< span class = "ml-2 self-center" > { $i18n . t ( 'Default' )} </ span >
2024-02-22 05:29:59 +08:00
{ : else }
2024-03-03 04:38:51 +08:00
< span class = "ml-2 self-center" > { $i18n . t ( 'Custom' )} </ span >
2024-02-22 05:29:59 +08:00
{ /if }
< / button >
< / div >
2024-02-05 17:58:54 +08:00
2024-02-22 05:29:59 +08:00
{ #if keepAlive !== null }
< div class = "flex mt-1 space-x-2" >
< input
2024-05-16 06:55:13 +08:00
class="w-full rounded-lg py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none"
2024-02-22 05:29:59 +08:00
type="text"
2024-03-04 18:15:54 +08:00
placeholder={ $i18n . t ( "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'." )}
2024-02-22 05:29:59 +08:00
bind:value={ keepAlive }
/>
< / div >
{ /if }
< / div >
< div >
< div class = " py-1 flex w-full justify-between" >
2024-03-03 04:38:51 +08:00
< div class = " self-center text-sm font-medium" > { $i18n . t ( 'Request Mode' )} </ div >
2024-02-05 17:58:54 +08:00
2024-02-22 05:29:59 +08:00
< button
class="p-1 px-3 text-xs flex rounded transition"
on:click={() => {
toggleRequestFormat();
}}
>
{ #if requestFormat === '' }
2024-03-03 04:38:51 +08:00
< span class = "ml-2 self-center" > { $i18n . t ( 'Default' )} </ span >
2024-02-22 05:29:59 +08:00
{ :else if requestFormat === 'json' }
<!-- <svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
class="w-4 h-4 self-center"
>
< path
d="M10 2a.75.75 0 01.75.75v1.5a.75.75 0 01-1.5 0v-1.5A.75.75 0 0110 2zM10 15a.75.75 0 01.75.75v1.5a.75.75 0 01-1.5 0v-1.5A.75.75 0 0110 15zM10 7a3 3 0 100 6 3 3 0 000-6zM15.657 5.404a.75.75 0 10-1.06-1.06l-1.061 1.06a.75.75 0 001.06 1.06l1.06-1.06zM6.464 14.596a.75.75 0 10-1.06-1.06l-1.06 1.06a.75.75 0 001.06 1.06l1.06-1.06zM18 10a.75.75 0 01-.75.75h-1.5a.75.75 0 010-1.5h1.5A.75.75 0 0118 10zM5 10a.75.75 0 01-.75.75h-1.5a.75.75 0 010-1.5h1.5A.75.75 0 015 10zM14.596 15.657a.75.75 0 001.06-1.06l-1.06-1.061a.75.75 0 10-1.06 1.06l1.06 1.06zM5.404 6.464a.75.75 0 001.06-1.06l-1.06-1.06a.75.75 0 10-1.061 1.06l1.06 1.06z"
/>
< / svg > -->
2024-03-03 04:38:51 +08:00
< span class = "ml-2 self-center" > { $i18n . t ( 'JSON' )} </ span >
2024-02-22 05:29:59 +08:00
{ /if }
< / button >
< / div >
< / div >
{ /if }
< / div >
2024-02-05 17:58:54 +08:00
< / div >
< div class = "flex justify-end pt-3 text-sm font-medium" >
< button
2024-10-21 15:05:27 +08:00
class="px-3.5 py-1.5 text-sm font-medium bg-black hover:bg-gray-900 text-white dark:bg-white dark:text-black dark:hover:bg-gray-100 transition rounded-full"
2024-02-05 17:58:54 +08:00
on:click={() => {
saveSettings({
2024-02-22 05:29:59 +08:00
system: system !== '' ? system : undefined,
2024-05-25 11:29:13 +08:00
params: {
2024-09-24 18:49:35 +08:00
stream_response: params.stream_response !== null ? params.stream_response : undefined,
2024-06-11 04:29:09 +08:00
seed: (params.seed !== null ? params.seed : undefined) ?? undefined,
2024-05-26 04:48:45 +08:00
stop: params.stop ? params.stop.split(',').filter((e) => e) : undefined,
2024-06-11 04:29:09 +08:00
temperature: params.temperature !== null ? params.temperature : undefined,
2024-05-25 17:04:47 +08:00
frequency_penalty:
2024-06-11 04:29:09 +08:00
params.frequency_penalty !== null ? params.frequency_penalty : undefined,
repeat_last_n: params.repeat_last_n !== null ? params.repeat_last_n : undefined,
mirostat: params.mirostat !== null ? params.mirostat : undefined,
mirostat_eta: params.mirostat_eta !== null ? params.mirostat_eta : undefined,
mirostat_tau: params.mirostat_tau !== null ? params.mirostat_tau : undefined,
top_k: params.top_k !== null ? params.top_k : undefined,
top_p: params.top_p !== null ? params.top_p : undefined,
2024-11-26 08:11:49 +08:00
min_p: params.min_p !== null ? params.min_p : undefined,
2024-06-11 04:29:09 +08:00
tfs_z: params.tfs_z !== null ? params.tfs_z : undefined,
num_ctx: params.num_ctx !== null ? params.num_ctx : undefined,
2024-06-14 13:31:26 +08:00
num_batch: params.num_batch !== null ? params.num_batch : undefined,
num_keep: params.num_keep !== null ? params.num_keep : undefined,
2024-06-11 04:29:09 +08:00
max_tokens: params.max_tokens !== null ? params.max_tokens : undefined,
use_mmap: params.use_mmap !== null ? params.use_mmap : undefined,
2024-06-11 04:29:28 +08:00
use_mlock: params.use_mlock !== null ? params.use_mlock : undefined,
2024-08-20 07:47:20 +08:00
num_thread: params.num_thread !== null ? params.num_thread : undefined,
num_gpu: params.num_gpu !== null ? params.num_gpu : undefined
2024-02-22 05:29:59 +08:00
},
keepAlive: keepAlive ? (isNaN(keepAlive) ? keepAlive : parseInt(keepAlive)) : undefined
2024-02-05 17:58:54 +08:00
});
dispatch('save');
}}
>
2024-03-04 16:53:56 +08:00
{ $i18n . t ( 'Save' )}
2024-02-05 17:58:54 +08:00
< / button >
< / div >
< / div >