123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182 |
- <script lang="ts">
- import Modal from '../common/Modal.svelte';
- import { WEB_UI_VERSION, OLLAMA_API_BASE_URL } from '$lib/constants';
- import toast from 'svelte-french-toast';
- import { onMount } from 'svelte';
- import { config, info, models, settings, user } from '$lib/stores';
- import { splitStream, getGravatarURL } from '$lib/utils';
- import Advanced from './Settings/Advanced.svelte';
- export let show = false;
- const saveSettings = async (updated) => {
- console.log(updated);
- await settings.set({ ...$settings, ...updated });
- await models.set(await getModels());
- localStorage.setItem('settings', JSON.stringify($settings));
- };
- let selectedTab = 'general';
- // General
- let API_BASE_URL = OLLAMA_API_BASE_URL;
- let theme = 'dark';
- let notificationEnabled = false;
- let system = '';
- // Advanced
- let requestFormat = '';
- let options = {
- // Advanced
- seed: 0,
- temperature: '',
- repeat_penalty: '',
- repeat_last_n: '',
- mirostat: '',
- mirostat_eta: '',
- mirostat_tau: '',
- top_k: '',
- top_p: '',
- stop: '',
- tfs_z: '',
- num_ctx: ''
- };
- // Models
- let modelTag = '';
- let deleteModelTag = '';
- let digest = '';
- let pullProgress = null;
- // Addons
- let titleAutoGenerate = true;
- let speechAutoSend = false;
- let responseAutoCopy = false;
- let gravatarEmail = '';
- let OPENAI_API_KEY = '';
- // Auth
- let authEnabled = false;
- let authType = 'Basic';
- let authContent = '';
- const checkOllamaConnection = async () => {
- if (API_BASE_URL === '') {
- API_BASE_URL = OLLAMA_API_BASE_URL;
- }
- const _models = await getModels(API_BASE_URL, 'ollama');
- if (_models.length > 0) {
- toast.success('Server connection verified');
- await models.set(_models);
- saveSettings({
- API_BASE_URL: API_BASE_URL
- });
- }
- };
- const toggleTheme = async () => {
- if (theme === 'dark') {
- theme = 'light';
- } else {
- theme = 'dark';
- }
- localStorage.theme = theme;
- document.documentElement.classList.remove(theme === 'dark' ? 'light' : 'dark');
- document.documentElement.classList.add(theme);
- };
- const toggleRequestFormat = async () => {
- if (requestFormat === '') {
- requestFormat = 'json';
- } else {
- requestFormat = '';
- }
- saveSettings({ requestFormat: requestFormat !== '' ? requestFormat : undefined });
- };
- const toggleSpeechAutoSend = async () => {
- speechAutoSend = !speechAutoSend;
- saveSettings({ speechAutoSend: speechAutoSend });
- };
- const toggleTitleAutoGenerate = async () => {
- titleAutoGenerate = !titleAutoGenerate;
- saveSettings({ titleAutoGenerate: titleAutoGenerate });
- };
- const toggleNotification = async () => {
- const permission = await Notification.requestPermission();
- if (permission === 'granted') {
- notificationEnabled = !notificationEnabled;
- saveSettings({ notificationEnabled: notificationEnabled });
- } else {
- toast.error(
- 'Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.'
- );
- }
- };
- const toggleResponseAutoCopy = async () => {
- const permission = await navigator.clipboard
- .readText()
- .then(() => {
- return 'granted';
- })
- .catch(() => {
- return '';
- });
- console.log(permission);
- if (permission === 'granted') {
- responseAutoCopy = !responseAutoCopy;
- saveSettings({ responseAutoCopy: responseAutoCopy });
- } else {
- toast.error(
- 'Clipboard write permission denied. Please check your browser settings to grant the necessary access.'
- );
- }
- };
- const toggleAuthHeader = async () => {
- authEnabled = !authEnabled;
- };
- const pullModelHandler = async () => {
- const res = await fetch(`${API_BASE_URL}/pull`, {
- method: 'POST',
- headers: {
- 'Content-Type': 'text/event-stream',
- ...($settings.authHeader && { Authorization: $settings.authHeader }),
- ...($user && { Authorization: `Bearer ${localStorage.token}` })
- },
- body: JSON.stringify({
- name: modelTag
- })
- });
- const reader = res.body
- .pipeThrough(new TextDecoderStream())
- .pipeThrough(splitStream('\n'))
- .getReader();
- while (true) {
- const { value, done } = await reader.read();
- if (done) break;
- try {
- let lines = value.split('\n');
- for (const line of lines) {
- if (line !== '') {
- console.log(line);
- let data = JSON.parse(line);
- console.log(data);
- if (data.error) {
- throw data.error;
- }
- if (data.detail) {
- throw data.detail;
- }
- if (data.status) {
- if (!data.digest) {
- toast.success(data.status);
- if (data.status === 'success') {
- const notification = new Notification(`Ollama`, {
- body: `Model '${modelTag}' has been successfully downloaded.`,
- icon: '/favicon.png'
- });
- }
- } else {
- digest = data.digest;
- if (data.completed) {
- pullProgress = Math.round((data.completed / data.total) * 1000) / 10;
- } else {
- pullProgress = 100;
- }
- }
- }
- }
- }
- } catch (error) {
- console.log(error);
- toast.error(error);
- }
- }
- modelTag = '';
- models.set(await getModels());
- };
- const deleteModelHandler = async () => {
- const res = await fetch(`${API_BASE_URL}/delete`, {
- method: 'DELETE',
- headers: {
- 'Content-Type': 'text/event-stream',
- ...($settings.authHeader && { Authorization: $settings.authHeader }),
- ...($user && { Authorization: `Bearer ${localStorage.token}` })
- },
- body: JSON.stringify({
- name: deleteModelTag
- })
- });
- const reader = res.body
- .pipeThrough(new TextDecoderStream())
- .pipeThrough(splitStream('\n'))
- .getReader();
- while (true) {
- const { value, done } = await reader.read();
- if (done) break;
- try {
- let lines = value.split('\n');
- for (const line of lines) {
- if (line !== '' && line !== 'null') {
- console.log(line);
- let data = JSON.parse(line);
- console.log(data);
- if (data.error) {
- throw data.error;
- }
- if (data.detail) {
- throw data.detail;
- }
- if (data.status) {
- }
- } else {
- toast.success(`Deleted ${deleteModelTag}`);
- }
- }
- } catch (error) {
- console.log(error);
- toast.error(error);
- }
- }
- deleteModelTag = '';
- models.set(await getModels());
- };
- const getModels = async (url = '', type = 'all') => {
- let models = [];
- const res = await fetch(`${url ? url : $settings?.API_BASE_URL ?? OLLAMA_API_BASE_URL}/tags`, {
- method: 'GET',
- headers: {
- Accept: 'application/json',
- 'Content-Type': 'application/json',
- ...($settings.authHeader && { Authorization: $settings.authHeader }),
- ...($user && { Authorization: `Bearer ${localStorage.token}` })
- }
- })
- .then(async (res) => {
- if (!res.ok) throw await res.json();
- return res.json();
- })
- .catch((error) => {
- console.log(error);
- if ('detail' in error) {
- toast.error(error.detail);
- } else {
- toast.error('Server connection failed');
- }
- return null;
- });
- console.log(res);
- models.push(...(res?.models ?? []));
- // If OpenAI API Key exists
- if (type === 'all' && $settings.OPENAI_API_KEY) {
- // Validate OPENAI_API_KEY
- const openaiModelRes = await fetch(`https://api.openai.com/v1/models`, {
- method: 'GET',
- headers: {
- 'Content-Type': 'application/json',
- Authorization: `Bearer ${$settings.OPENAI_API_KEY}`
- }
- })
- .then(async (res) => {
- if (!res.ok) throw await res.json();
- return res.json();
- })
- .catch((error) => {
- console.log(error);
- toast.error(`OpenAI: ${error?.error?.message ?? 'Network Problem'}`);
- return null;
- });
- const openAIModels = openaiModelRes?.data ?? null;
- models.push(
- ...(openAIModels
- ? [
- { name: 'hr' },
- ...openAIModels
- .map((model) => ({ name: model.id, label: 'OpenAI' }))
- .filter((model) => model.name.includes('gpt'))
- ]
- : [])
- );
- }
- return models;
- };
- onMount(() => {
- let settings = JSON.parse(localStorage.getItem('settings') ?? '{}');
- console.log(settings);
- theme = localStorage.theme ?? 'dark';
- notificationEnabled = settings.notificationEnabled ?? false;
- API_BASE_URL = settings.API_BASE_URL ?? OLLAMA_API_BASE_URL;
- system = settings.system ?? '';
- requestFormat = settings.requestFormat ?? '';
- options.seed = settings.seed ?? 0;
- options.temperature = settings.temperature ?? '';
- options.repeat_penalty = settings.repeat_penalty ?? '';
- options.top_k = settings.top_k ?? '';
- options.top_p = settings.top_p ?? '';
- options.num_ctx = settings.num_ctx ?? '';
- options = { ...options, ...settings.options };
- titleAutoGenerate = settings.titleAutoGenerate ?? true;
- speechAutoSend = settings.speechAutoSend ?? false;
- responseAutoCopy = settings.responseAutoCopy ?? false;
- gravatarEmail = settings.gravatarEmail ?? '';
- OPENAI_API_KEY = settings.OPENAI_API_KEY ?? '';
- authEnabled = settings.authHeader !== undefined ? true : false;
- if (authEnabled) {
- authType = settings.authHeader.split(' ')[0];
- authContent = settings.authHeader.split(' ')[1];
- }
- });
- </script>
- <Modal bind:show>
- <div>
- <div class=" flex justify-between dark:text-gray-300 px-5 py-4">
- <div class=" text-lg font-medium self-center">Settings</div>
- <button
- class="self-center"
- on:click={() => {
- show = false;
- }}
- >
- <svg
- xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 20 20"
- fill="currentColor"
- class="w-5 h-5"
- >
- <path
- d="M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z"
- />
- </svg>
- </button>
- </div>
- <hr class=" dark:border-gray-800" />
- <div class="flex flex-col md:flex-row w-full p-4 md:space-x-4">
- <div
- class="tabs flex flex-row overflow-x-auto space-x-1 md:space-x-0 md:space-y-1 md:flex-col flex-1 md:flex-none md:w-40 dark:text-gray-200 text-xs text-left mb-3 md:mb-0"
- >
- <button
- class="px-2.5 py-2.5 min-w-fit rounded-lg flex-1 md:flex-none flex text-right transition {selectedTab ===
- 'general'
- ? 'bg-gray-200 dark:bg-gray-700'
- : ' hover:bg-gray-300 dark:hover:bg-gray-800'}"
- on:click={() => {
- selectedTab = 'general';
- }}
- >
- <div class=" self-center mr-2">
- <svg
- xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 20 20"
- fill="currentColor"
- class="w-4 h-4"
- >
- <path
- fill-rule="evenodd"
- d="M8.34 1.804A1 1 0 019.32 1h1.36a1 1 0 01.98.804l.295 1.473c.497.144.971.342 1.416.587l1.25-.834a1 1 0 011.262.125l.962.962a1 1 0 01.125 1.262l-.834 1.25c.245.445.443.919.587 1.416l1.473.294a1 1 0 01.804.98v1.361a1 1 0 01-.804.98l-1.473.295a6.95 6.95 0 01-.587 1.416l.834 1.25a1 1 0 01-.125 1.262l-.962.962a1 1 0 01-1.262.125l-1.25-.834a6.953 6.953 0 01-1.416.587l-.294 1.473a1 1 0 01-.98.804H9.32a1 1 0 01-.98-.804l-.295-1.473a6.957 6.957 0 01-1.416-.587l-1.25.834a1 1 0 01-1.262-.125l-.962-.962a1 1 0 01-.125-1.262l.834-1.25a6.957 6.957 0 01-.587-1.416l-1.473-.294A1 1 0 011 10.68V9.32a1 1 0 01.804-.98l1.473-.295c.144-.497.342-.971.587-1.416l-.834-1.25a1 1 0 01.125-1.262l.962-.962A1 1 0 015.38 3.03l1.25.834a6.957 6.957 0 011.416-.587l.294-1.473zM13 10a3 3 0 11-6 0 3 3 0 016 0z"
- clip-rule="evenodd"
- />
- </svg>
- </div>
- <div class=" self-center">General</div>
- </button>
- <button
- class="px-2.5 py-2.5 min-w-fit rounded-lg flex-1 md:flex-none flex text-right transition {selectedTab ===
- 'advanced'
- ? 'bg-gray-200 dark:bg-gray-700'
- : ' hover:bg-gray-300 dark:hover:bg-gray-800'}"
- on:click={() => {
- selectedTab = 'advanced';
- }}
- >
- <div class=" self-center mr-2">
- <svg
- xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 20 20"
- fill="currentColor"
- class="w-4 h-4"
- >
- <path
- d="M17 2.75a.75.75 0 00-1.5 0v5.5a.75.75 0 001.5 0v-5.5zM17 15.75a.75.75 0 00-1.5 0v1.5a.75.75 0 001.5 0v-1.5zM3.75 15a.75.75 0 01.75.75v1.5a.75.75 0 01-1.5 0v-1.5a.75.75 0 01.75-.75zM4.5 2.75a.75.75 0 00-1.5 0v5.5a.75.75 0 001.5 0v-5.5zM10 11a.75.75 0 01.75.75v5.5a.75.75 0 01-1.5 0v-5.5A.75.75 0 0110 11zM10.75 2.75a.75.75 0 00-1.5 0v1.5a.75.75 0 001.5 0v-1.5zM10 6a2 2 0 100 4 2 2 0 000-4zM3.75 10a2 2 0 100 4 2 2 0 000-4zM16.25 10a2 2 0 100 4 2 2 0 000-4z"
- />
- </svg>
- </div>
- <div class=" self-center">Advanced</div>
- </button>
- <button
- class="px-2.5 py-2.5 min-w-fit rounded-lg flex-1 md:flex-none flex text-right transition {selectedTab ===
- 'models'
- ? 'bg-gray-200 dark:bg-gray-700'
- : ' hover:bg-gray-300 dark:hover:bg-gray-800'}"
- on:click={() => {
- selectedTab = 'models';
- }}
- >
- <div class=" self-center mr-2">
- <svg
- xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 20 20"
- fill="currentColor"
- class="w-4 h-4"
- >
- <path
- fill-rule="evenodd"
- d="M10 1c3.866 0 7 1.79 7 4s-3.134 4-7 4-7-1.79-7-4 3.134-4 7-4zm5.694 8.13c.464-.264.91-.583 1.306-.952V10c0 2.21-3.134 4-7 4s-7-1.79-7-4V8.178c.396.37.842.688 1.306.953C5.838 10.006 7.854 10.5 10 10.5s4.162-.494 5.694-1.37zM3 13.179V15c0 2.21 3.134 4 7 4s7-1.79 7-4v-1.822c-.396.37-.842.688-1.306.953-1.532.875-3.548 1.369-5.694 1.369s-4.162-.494-5.694-1.37A7.009 7.009 0 013 13.179z"
- clip-rule="evenodd"
- />
- </svg>
- </div>
- <div class=" self-center">Models</div>
- </button>
- <button
- class="px-2.5 py-2.5 min-w-fit rounded-lg flex-1 md:flex-none flex text-right transition {selectedTab ===
- 'addons'
- ? 'bg-gray-200 dark:bg-gray-700'
- : ' hover:bg-gray-300 dark:hover:bg-gray-800'}"
- on:click={() => {
- selectedTab = 'addons';
- }}
- >
- <div class=" self-center mr-2">
- <svg
- xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 20 20"
- fill="currentColor"
- class="w-4 h-4"
- >
- <path
- d="M12 4.467c0-.405.262-.75.559-1.027.276-.257.441-.584.441-.94 0-.828-.895-1.5-2-1.5s-2 .672-2 1.5c0 .362.171.694.456.953.29.265.544.6.544.994a.968.968 0 01-1.024.974 39.655 39.655 0 01-3.014-.306.75.75 0 00-.847.847c.14.993.242 1.999.306 3.014A.968.968 0 014.447 10c-.393 0-.729-.253-.994-.544C3.194 9.17 2.862 9 2.5 9 1.672 9 1 9.895 1 11s.672 2 1.5 2c.356 0 .683-.165.94-.441.276-.297.622-.559 1.027-.559a.997.997 0 011.004 1.03 39.747 39.747 0 01-.319 3.734.75.75 0 00.64.842c1.05.146 2.111.252 3.184.318A.97.97 0 0010 16.948c0-.394-.254-.73-.545-.995C9.171 15.693 9 15.362 9 15c0-.828.895-1.5 2-1.5s2 .672 2 1.5c0 .356-.165.683-.441.94-.297.276-.559.622-.559 1.027a.998.998 0 001.03 1.005c1.337-.05 2.659-.162 3.961-.337a.75.75 0 00.644-.644c.175-1.302.288-2.624.337-3.961A.998.998 0 0016.967 12c-.405 0-.75.262-1.027.559-.257.276-.584.441-.94.441-.828 0-1.5-.895-1.5-2s.672-2 1.5-2c.362 0 .694.17.953.455.265.291.601.545.995.545a.97.97 0 00.976-1.024 41.159 41.159 0 00-.318-3.184.75.75 0 00-.842-.64c-1.228.164-2.473.271-3.734.319A.997.997 0 0112 4.467z"
- />
- </svg>
- </div>
- <div class=" self-center">Add-ons</div>
- </button>
- {#if !$config || ($config && !$config.auth)}
- <button
- class="px-2.5 py-2.5 min-w-fit rounded-lg flex-1 md:flex-none flex text-right transition {selectedTab ===
- 'auth'
- ? 'bg-gray-200 dark:bg-gray-700'
- : ' hover:bg-gray-300 dark:hover:bg-gray-800'}"
- on:click={() => {
- selectedTab = 'auth';
- }}
- >
- <div class=" self-center mr-2">
- <svg
- xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 24 24"
- fill="currentColor"
- class="w-4 h-4"
- >
- <path
- fill-rule="evenodd"
- d="M12.516 2.17a.75.75 0 00-1.032 0 11.209 11.209 0 01-7.877 3.08.75.75 0 00-.722.515A12.74 12.74 0 002.25 9.75c0 5.942 4.064 10.933 9.563 12.348a.749.749 0 00.374 0c5.499-1.415 9.563-6.406 9.563-12.348 0-1.39-.223-2.73-.635-3.985a.75.75 0 00-.722-.516l-.143.001c-2.996 0-5.717-1.17-7.734-3.08zm3.094 8.016a.75.75 0 10-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 00-1.06 1.06l2.25 2.25a.75.75 0 001.14-.094l3.75-5.25z"
- clip-rule="evenodd"
- />
- </svg>
- </div>
- <div class=" self-center">Authentication</div>
- </button>
- {/if}
- <button
- class="px-2.5 py-2.5 min-w-fit rounded-lg flex-1 md:flex-none flex text-right transition {selectedTab ===
- 'about'
- ? 'bg-gray-200 dark:bg-gray-700'
- : ' hover:bg-gray-300 dark:hover:bg-gray-800'}"
- on:click={() => {
- selectedTab = 'about';
- }}
- >
- <div class=" self-center mr-2">
- <svg
- xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 20 20"
- fill="currentColor"
- class="w-4 h-4"
- >
- <path
- fill-rule="evenodd"
- d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a.75.75 0 000 1.5h.253a.25.25 0 01.244.304l-.459 2.066A1.75 1.75 0 0010.747 15H11a.75.75 0 000-1.5h-.253a.25.25 0 01-.244-.304l.459-2.066A1.75 1.75 0 009.253 9H9z"
- clip-rule="evenodd"
- />
- </svg>
- </div>
- <div class=" self-center">About</div>
- </button>
- </div>
- <div class="flex-1 md:min-h-[340px]">
- {#if selectedTab === 'general'}
- <div class="flex flex-col space-y-3">
- <div>
- <div class=" mb-1 text-sm font-medium">WebUI Settings</div>
- <div class=" py-0.5 flex w-full justify-between">
- <div class=" self-center text-xs font-medium">Theme</div>
- <button
- class="p-1 px-3 text-xs flex rounded transition"
- on:click={() => {
- toggleTheme();
- }}
- >
- {#if theme === 'dark'}
- <svg
- xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 20 20"
- fill="currentColor"
- class="w-4 h-4"
- >
- <path
- fill-rule="evenodd"
- d="M7.455 2.004a.75.75 0 01.26.77 7 7 0 009.958 7.967.75.75 0 011.067.853A8.5 8.5 0 116.647 1.921a.75.75 0 01.808.083z"
- clip-rule="evenodd"
- />
- </svg>
- <span class="ml-2 self-center"> Dark </span>
- {:else}
- <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>
- <span class="ml-2 self-center"> Light </span>
- {/if}
- </button>
- </div>
- <div>
- <div class=" py-0.5 flex w-full justify-between">
- <div class=" self-center text-xs font-medium">Notification</div>
- <button
- class="p-1 px-3 text-xs flex rounded transition"
- on:click={() => {
- toggleNotification();
- }}
- type="button"
- >
- {#if notificationEnabled === true}
- <span class="ml-2 self-center">On</span>
- {:else}
- <span class="ml-2 self-center">Off</span>
- {/if}
- </button>
- </div>
- </div>
- </div>
- <hr class=" dark:border-gray-700" />
- <div>
- <div class=" mb-2.5 text-sm font-medium">Ollama Server URL</div>
- <div class="flex w-full">
- <div class="flex-1 mr-2">
- <input
- class="w-full rounded py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-800 outline-none"
- placeholder="Enter URL (e.g. http://localhost:11434/api)"
- bind:value={API_BASE_URL}
- />
- </div>
- <button
- class="px-3 bg-gray-200 hover:bg-gray-300 dark:bg-gray-600 dark:hover:bg-gray-700 rounded transition"
- on:click={() => {
- checkOllamaConnection();
- }}
- >
- <svg
- xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 20 20"
- fill="currentColor"
- class="w-4 h-4"
- >
- <path
- fill-rule="evenodd"
- d="M15.312 11.424a5.5 5.5 0 01-9.201 2.466l-.312-.311h2.433a.75.75 0 000-1.5H3.989a.75.75 0 00-.75.75v4.242a.75.75 0 001.5 0v-2.43l.31.31a7 7 0 0011.712-3.138.75.75 0 00-1.449-.39zm1.23-3.723a.75.75 0 00.219-.53V2.929a.75.75 0 00-1.5 0V5.36l-.31-.31A7 7 0 003.239 8.188a.75.75 0 101.448.389A5.5 5.5 0 0113.89 6.11l.311.31h-2.432a.75.75 0 000 1.5h4.243a.75.75 0 00.53-.219z"
- clip-rule="evenodd"
- />
- </svg>
- </button>
- </div>
- <div class="mt-2 text-xs text-gray-400 dark:text-gray-500">
- Trouble accessing Ollama? <a
- class=" text-gray-500 dark:text-gray-300 font-medium"
- href="https://github.com/ollama-webui/ollama-webui#troubleshooting"
- target="_blank"
- >
- Click here for help.
- </a>
- </div>
- </div>
- <hr class=" dark:border-gray-700" />
- <div>
- <div class=" mb-2.5 text-sm font-medium">System Prompt</div>
- <textarea
- bind:value={system}
- class="w-full rounded p-4 text-sm dark:text-gray-300 dark:bg-gray-800 outline-none resize-none"
- rows="4"
- />
- </div>
- <div class="flex justify-end pt-3 text-sm font-medium">
- <button
- class=" px-4 py-2 bg-emerald-600 hover:bg-emerald-700 text-gray-100 transition rounded"
- on:click={() => {
- saveSettings({
- API_BASE_URL: API_BASE_URL === '' ? OLLAMA_API_BASE_URL : API_BASE_URL,
- system: system !== '' ? system : undefined
- });
- show = false;
- }}
- >
- Save
- </button>
- </div>
- </div>
- {:else if selectedTab === 'advanced'}
- <div class="flex flex-col h-full justify-between text-sm">
- <div class=" space-y-3 pr-1.5 overflow-y-scroll max-h-72">
- <div class=" text-sm font-medium">Parameters</div>
- <Advanced bind:options />
- <hr class=" dark:border-gray-700" />
- <div>
- <div class=" py-1 flex w-full justify-between">
- <div class=" self-center text-sm font-medium">Request Mode</div>
- <button
- class="p-1 px-3 text-xs flex rounded transition"
- on:click={() => {
- toggleRequestFormat();
- }}
- >
- {#if requestFormat === ''}
- <span class="ml-2 self-center"> Default </span>
- {: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> -->
- <span class="ml-2 self-center"> JSON </span>
- {/if}
- </button>
- </div>
- </div>
- </div>
- <div class="flex justify-end pt-3 text-sm font-medium">
- <button
- class=" px-4 py-2 bg-emerald-600 hover:bg-emerald-700 text-gray-100 transition rounded"
- on:click={() => {
- saveSettings({
- options: {
- seed: (options.seed !== 0 ? options.seed : undefined) ?? undefined,
- stop: options.stop !== '' ? options.stop : undefined,
- temperature: options.temperature !== '' ? options.temperature : undefined,
- repeat_penalty:
- options.repeat_penalty !== '' ? options.repeat_penalty : undefined,
- repeat_last_n:
- options.repeat_last_n !== '' ? options.repeat_last_n : undefined,
- mirostat: options.mirostat !== '' ? options.mirostat : undefined,
- mirostat_eta: options.mirostat_eta !== '' ? options.mirostat_eta : undefined,
- mirostat_tau: options.mirostat_tau !== '' ? options.mirostat_tau : undefined,
- top_k: options.top_k !== '' ? options.top_k : undefined,
- top_p: options.top_p !== '' ? options.top_p : undefined,
- tfs_z: options.tfs_z !== '' ? options.tfs_z : undefined,
- num_ctx: options.num_ctx !== '' ? options.num_ctx : undefined
- }
- });
- show = false;
- }}
- >
- Save
- </button>
- </div>
- </div>
- {:else if selectedTab === 'models'}
- <div class="flex flex-col space-y-3 text-sm mb-10">
- <div>
- <div class=" mb-2.5 text-sm font-medium">Pull a model</div>
- <div class="flex w-full">
- <div class="flex-1 mr-2">
- <input
- class="w-full rounded py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-800 outline-none"
- placeholder="Enter model tag (e.g. mistral:7b)"
- bind:value={modelTag}
- />
- </div>
- <button
- class="px-3 text-gray-100 bg-emerald-600 hover:bg-emerald-700 rounded transition"
- on:click={() => {
- pullModelHandler();
- }}
- >
- <svg
- xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 20 20"
- fill="currentColor"
- class="w-4 h-4"
- >
- <path
- d="M10.75 2.75a.75.75 0 00-1.5 0v8.614L6.295 8.235a.75.75 0 10-1.09 1.03l4.25 4.5a.75.75 0 001.09 0l4.25-4.5a.75.75 0 00-1.09-1.03l-2.955 3.129V2.75z"
- />
- <path
- d="M3.5 12.75a.75.75 0 00-1.5 0v2.5A2.75 2.75 0 004.75 18h10.5A2.75 2.75 0 0018 15.25v-2.5a.75.75 0 00-1.5 0v2.5c0 .69-.56 1.25-1.25 1.25H4.75c-.69 0-1.25-.56-1.25-1.25v-2.5z"
- />
- </svg>
- </button>
- </div>
- <div class="mt-2 text-xs text-gray-400 dark:text-gray-500">
- To access the available model names for downloading, <a
- class=" text-gray-500 dark:text-gray-300 font-medium"
- href="https://ollama.ai/library"
- target="_blank">click here.</a
- >
- </div>
- {#if pullProgress !== null}
- <div class="mt-2">
- <div class=" mb-2 text-xs">Pull Progress</div>
- <div class="w-full rounded-full dark:bg-gray-800">
- <div
- class="dark:bg-gray-600 text-xs font-medium text-blue-100 text-center p-0.5 leading-none rounded-full"
- style="width: {Math.max(15, pullProgress ?? 0)}%"
- >
- {pullProgress ?? 0}%
- </div>
- </div>
- <div class="mt-1 text-xs dark:text-gray-500" style="font-size: 0.5rem;">
- {digest}
- </div>
- </div>
- {/if}
- </div>
- <hr class=" dark:border-gray-700" />
- <div>
- <div class=" mb-2.5 text-sm font-medium">Delete a model</div>
- <div class="flex w-full">
- <div class="flex-1 mr-2">
- <select
- class="w-full rounded py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-800 outline-none"
- bind:value={deleteModelTag}
- placeholder="Select a model"
- >
- {#if !deleteModelTag}
- <option value="" disabled selected>Select a model</option>
- {/if}
- {#each $models.filter((m) => m.size != null) as model}
- <option value={model.name} class="bg-gray-100 dark:bg-gray-700"
- >{model.name + ' (' + (model.size / 1024 ** 3).toFixed(1) + ' GB)'}</option
- >
- {/each}
- </select>
- </div>
- <button
- class="px-3 bg-red-700 hover:bg-red-800 text-gray-100 rounded transition"
- on:click={() => {
- deleteModelHandler();
- }}
- >
- <svg
- xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 20 20"
- fill="currentColor"
- class="w-4 h-4"
- >
- <path
- fill-rule="evenodd"
- d="M8.75 1A2.75 2.75 0 006 3.75v.443c-.795.077-1.584.176-2.365.298a.75.75 0 10.23 1.482l.149-.022.841 10.518A2.75 2.75 0 007.596 19h4.807a2.75 2.75 0 002.742-2.53l.841-10.52.149.023a.75.75 0 00.23-1.482A41.03 41.03 0 0014 4.193V3.75A2.75 2.75 0 0011.25 1h-2.5zM10 4c.84 0 1.673.025 2.5.075V3.75c0-.69-.56-1.25-1.25-1.25h-2.5c-.69 0-1.25.56-1.25 1.25v.325C8.327 4.025 9.16 4 10 4zM8.58 7.72a.75.75 0 00-1.5.06l.3 7.5a.75.75 0 101.5-.06l-.3-7.5zm4.34.06a.75.75 0 10-1.5-.06l-.3 7.5a.75.75 0 101.5.06l.3-7.5z"
- clip-rule="evenodd"
- />
- </svg>
- </button>
- </div>
- </div>
- </div>
- {:else if selectedTab === 'addons'}
- <form
- class="flex flex-col h-full justify-between space-y-3 text-sm"
- on:submit|preventDefault={() => {
- saveSettings({
- gravatarEmail: gravatarEmail !== '' ? gravatarEmail : undefined,
- gravatarUrl: gravatarEmail !== '' ? getGravatarURL(gravatarEmail) : undefined,
- OPENAI_API_KEY: OPENAI_API_KEY !== '' ? OPENAI_API_KEY : undefined
- });
- show = false;
- }}
- >
- <div class=" space-y-3">
- <div>
- <div class=" mb-1 text-sm font-medium">WebUI Add-ons</div>
- <div>
- <div class=" py-0.5 flex w-full justify-between">
- <div class=" self-center text-xs font-medium">Title Auto Generation</div>
- <button
- class="p-1 px-3 text-xs flex rounded transition"
- on:click={() => {
- toggleTitleAutoGenerate();
- }}
- type="button"
- >
- {#if titleAutoGenerate === true}
- <span class="ml-2 self-center">On</span>
- {:else}
- <span class="ml-2 self-center">Off</span>
- {/if}
- </button>
- </div>
- </div>
- <div>
- <div class=" py-0.5 flex w-full justify-between">
- <div class=" self-center text-xs font-medium">Voice Input Auto-Send</div>
- <button
- class="p-1 px-3 text-xs flex rounded transition"
- on:click={() => {
- toggleSpeechAutoSend();
- }}
- type="button"
- >
- {#if speechAutoSend === true}
- <span class="ml-2 self-center">On</span>
- {:else}
- <span class="ml-2 self-center">Off</span>
- {/if}
- </button>
- </div>
- </div>
- <div>
- <div class=" py-0.5 flex w-full justify-between">
- <div class=" self-center text-xs font-medium">
- Response AutoCopy to Clipboard
- </div>
- <button
- class="p-1 px-3 text-xs flex rounded transition"
- on:click={() => {
- toggleResponseAutoCopy();
- }}
- type="button"
- >
- {#if responseAutoCopy === true}
- <span class="ml-2 self-center">On</span>
- {:else}
- <span class="ml-2 self-center">Off</span>
- {/if}
- </button>
- </div>
- </div>
- </div>
- <hr class=" dark:border-gray-700" />
- <div>
- <div class=" mb-2.5 text-sm font-medium">
- Gravatar Email <span class=" text-gray-400 text-sm">(optional)</span>
- </div>
- <div class="flex w-full">
- <div class="flex-1">
- <input
- class="w-full rounded py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-800 outline-none"
- placeholder="Enter Your Email"
- bind:value={gravatarEmail}
- autocomplete="off"
- type="email"
- />
- </div>
- </div>
- <div class="mt-2 text-xs text-gray-400 dark:text-gray-500">
- Changes user profile image to match your <a
- class=" text-gray-500 dark:text-gray-300 font-medium"
- href="https://gravatar.com/"
- target="_blank">Gravatar.</a
- >
- </div>
- </div>
- <hr class=" dark:border-gray-700" />
- <div>
- <div class=" mb-2.5 text-sm font-medium">
- OpenAI API Key <span class=" text-gray-400 text-sm">(optional)</span>
- </div>
- <div class="flex w-full">
- <div class="flex-1">
- <input
- class="w-full rounded py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-800 outline-none"
- placeholder="Enter OpenAI API Key"
- bind:value={OPENAI_API_KEY}
- autocomplete="off"
- />
- </div>
- </div>
- <div class="mt-2 text-xs text-gray-400 dark:text-gray-500">
- Adds optional support for 'gpt-*' models available.
- </div>
- </div>
- </div>
- <div class="flex justify-end pt-3 text-sm font-medium">
- <button
- class=" px-4 py-2 bg-emerald-600 hover:bg-emerald-700 text-gray-100 transition rounded"
- type="submit"
- >
- Save
- </button>
- </div>
- </form>
- {:else if selectedTab === 'auth'}
- <form
- class="flex flex-col h-full justify-between space-y-3 text-sm"
- on:submit|preventDefault={() => {
- console.log('auth save');
- saveSettings({
- authHeader: authEnabled ? `${authType} ${authContent}` : undefined
- });
- show = false;
- }}
- >
- <div class=" space-y-3">
- <div>
- <div class=" py-1 flex w-full justify-between">
- <div class=" self-center text-sm font-medium">Authorization Header</div>
- <button
- class="p-1 px-3 text-xs flex rounded transition"
- type="button"
- on:click={() => {
- toggleAuthHeader();
- }}
- >
- {#if authEnabled === true}
- <svg
- xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 24 24"
- fill="currentColor"
- class="w-4 h-4"
- >
- <path
- fill-rule="evenodd"
- d="M12 1.5a5.25 5.25 0 00-5.25 5.25v3a3 3 0 00-3 3v6.75a3 3 0 003 3h10.5a3 3 0 003-3v-6.75a3 3 0 00-3-3v-3c0-2.9-2.35-5.25-5.25-5.25zm3.75 8.25v-3a3.75 3.75 0 10-7.5 0v3h7.5z"
- clip-rule="evenodd"
- />
- </svg>
- <span class="ml-2 self-center"> On </span>
- {:else}
- <svg
- xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 24 24"
- fill="currentColor"
- class="w-4 h-4"
- >
- <path
- d="M18 1.5c2.9 0 5.25 2.35 5.25 5.25v3.75a.75.75 0 01-1.5 0V6.75a3.75 3.75 0 10-7.5 0v3a3 3 0 013 3v6.75a3 3 0 01-3 3H3.75a3 3 0 01-3-3v-6.75a3 3 0 013-3h9v-3c0-2.9 2.35-5.25 5.25-5.25z"
- />
- </svg>
- <span class="ml-2 self-center">Off</span>
- {/if}
- </button>
- </div>
- </div>
- {#if authEnabled}
- <hr class=" dark:border-gray-700" />
- <div class="mt-2">
- <div class=" py-1 flex w-full space-x-2">
- <button
- class=" py-1 font-semibold flex rounded transition"
- on:click={() => {
- authType = authType === 'Basic' ? 'Bearer' : 'Basic';
- }}
- type="button"
- >
- {#if authType === 'Basic'}
- <span class="self-center mr-2">Basic</span>
- {:else if authType === 'Bearer'}
- <span class="self-center mr-2">Bearer</span>
- {/if}
- </button>
- <div class="flex-1">
- <input
- class="w-full rounded py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-800 outline-none"
- placeholder="Enter Authorization Header Content"
- bind:value={authContent}
- />
- </div>
- </div>
- <div class="mt-2 text-xs text-gray-400 dark:text-gray-500">
- Toggle between <span class=" text-gray-500 dark:text-gray-300 font-medium"
- >'Basic'</span
- >
- and <span class=" text-gray-500 dark:text-gray-300 font-medium">'Bearer'</span> by
- clicking on the label next to the input.
- </div>
- </div>
- <hr class=" dark:border-gray-700" />
- <div>
- <div class=" mb-2.5 text-sm font-medium">Preview Authorization Header</div>
- <textarea
- value={JSON.stringify({
- Authorization: `${authType} ${authContent}`
- })}
- class="w-full rounded p-4 text-sm dark:text-gray-300 dark:bg-gray-800 outline-none resize-none"
- rows="2"
- disabled
- />
- </div>
- {/if}
- </div>
- <div class="flex justify-end pt-3 text-sm font-medium">
- <button
- class=" px-4 py-2 bg-emerald-600 hover:bg-emerald-700 text-gray-100 transition rounded"
- type="submit"
- >
- Save
- </button>
- </div>
- </form>
- {:else if selectedTab === 'about'}
- <div class="flex flex-col h-full justify-between space-y-3 text-sm mb-6">
- <div class=" space-y-3">
- <div>
- <div class=" mb-2.5 text-sm font-medium">Ollama Web UI Version</div>
- <div class="flex w-full">
- <div class="flex-1 text-xs text-gray-700 dark:text-gray-200">
- {$config && $config.version ? $config.version : WEB_UI_VERSION}
- </div>
- </div>
- </div>
- <hr class=" dark:border-gray-700" />
- <div>
- <div class=" mb-2.5 text-sm font-medium">Ollama Version</div>
- <div class="flex w-full">
- <div class="flex-1 text-xs text-gray-700 dark:text-gray-200">
- {$info?.ollama?.version ?? 'N/A'}
- </div>
- </div>
- </div>
- <hr class=" dark:border-gray-700" />
- <div class="mt-2 text-xs text-gray-400 dark:text-gray-500">
- Created by <a
- class=" text-gray-500 dark:text-gray-300 font-medium"
- href="https://github.com/tjbck"
- target="_blank">Timothy J. Baek</a
- >
- </div>
- <div>
- <a href="https://github.com/ollama-webui/ollama-webui">
- <img
- alt="Github Repo"
- src="https://img.shields.io/github/stars/ollama-webui/ollama-webui?style=social&label=Star us on Github"
- />
- </a>
- </div>
- </div>
- </div>
- {/if}
- </div>
- </div>
- </div>
- </Modal>
- <style>
- input::-webkit-outer-spin-button,
- input::-webkit-inner-spin-button {
- /* display: none; <- Crashes Chrome on hover */
- -webkit-appearance: none;
- margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
- }
- .tabs::-webkit-scrollbar {
- display: none; /* for Chrome, Safari and Opera */
- }
- .tabs {
- -ms-overflow-style: none; /* IE and Edge */
- scrollbar-width: none; /* Firefox */
- }
- input[type='number'] {
- -moz-appearance: textfield; /* Firefox */
- }
- </style>
|