forked from open-webui/open-webui
set default model button added
This commit is contained in:
parent
1f52207dcf
commit
4af5b21d56
1 changed files with 49 additions and 13 deletions
|
@ -6,16 +6,30 @@
|
||||||
|
|
||||||
import type { PageData } from './$types';
|
import type { PageData } from './$types';
|
||||||
import { ENDPOINT } from '$lib/contants';
|
import { ENDPOINT } from '$lib/contants';
|
||||||
import { tick } from 'svelte';
|
import { onMount, tick } from 'svelte';
|
||||||
|
|
||||||
export let data: PageData;
|
export let data: PageData;
|
||||||
$: ({ models } = data);
|
$: ({ models } = data);
|
||||||
let textareaElement;
|
let textareaElement;
|
||||||
|
|
||||||
let selectedModel = '';
|
let selectedModel = '';
|
||||||
|
let systemPrompt = '';
|
||||||
|
let temperature = '';
|
||||||
let prompt = '';
|
let prompt = '';
|
||||||
let messages = [];
|
let messages = [];
|
||||||
|
|
||||||
|
onMount(() => {
|
||||||
|
let settings = localStorage.getItem('settings');
|
||||||
|
if (settings) {
|
||||||
|
settings = JSON.parse(settings);
|
||||||
|
console.log(settings);
|
||||||
|
|
||||||
|
selectedModel = settings.model ?? '';
|
||||||
|
systemPrompt = settings.systemPrompt ?? '';
|
||||||
|
temperature = settings.temperature ?? '';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
//////////////////////////
|
//////////////////////////
|
||||||
// Helper functions
|
// Helper functions
|
||||||
//////////////////////////
|
//////////////////////////
|
||||||
|
@ -71,6 +85,22 @@
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
//////////////////////////
|
||||||
|
// Web functions
|
||||||
|
//////////////////////////
|
||||||
|
|
||||||
|
const saveDefaultModel = () => {
|
||||||
|
let settings = localStorage.getItem('settings') ?? '{}';
|
||||||
|
if (settings) {
|
||||||
|
settings = JSON.parse(settings);
|
||||||
|
settings.model = selectedModel;
|
||||||
|
localStorage.setItem('settings', JSON.stringify(settings));
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log('saved');
|
||||||
|
toast.success('Default model updated');
|
||||||
|
};
|
||||||
|
|
||||||
//////////////////////////
|
//////////////////////////
|
||||||
// Ollama functions
|
// Ollama functions
|
||||||
//////////////////////////
|
//////////////////////////
|
||||||
|
@ -248,6 +278,8 @@
|
||||||
<div class="p-3 rounded-lg bg-gray-900">
|
<div class="p-3 rounded-lg bg-gray-900">
|
||||||
<div>
|
<div>
|
||||||
<label for="models" class="block mb-2 text-sm font-medium text-gray-200">Model</label>
|
<label for="models" class="block mb-2 text-sm font-medium text-gray-200">Model</label>
|
||||||
|
|
||||||
|
<div>
|
||||||
<select
|
<select
|
||||||
id="models"
|
id="models"
|
||||||
class="outline-none border border-gray-600 bg-gray-700 text-gray-200 text-sm rounded-lg block w-full p-2.5 placeholder-gray-400"
|
class="outline-none border border-gray-600 bg-gray-700 text-gray-200 text-sm rounded-lg block w-full p-2.5 placeholder-gray-400"
|
||||||
|
@ -260,6 +292,10 @@
|
||||||
<option value={model.name}>{model.name}</option>
|
<option value={model.name}>{model.name}</option>
|
||||||
{/each}
|
{/each}
|
||||||
</select>
|
</select>
|
||||||
|
<div class="text-right mt-1.5 text-xs text-gray-500">
|
||||||
|
<button on:click={saveDefaultModel}> Set as default</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -358,7 +394,7 @@
|
||||||
{#if messages.length != 0 && messages.at(-1).role == 'assistant' && messages.at(-1).done == true}
|
{#if messages.length != 0 && messages.at(-1).role == 'assistant' && messages.at(-1).done == true}
|
||||||
<div class=" flex justify-end mb-2.5">
|
<div class=" flex justify-end mb-2.5">
|
||||||
<button
|
<button
|
||||||
class=" flex px-4 py-2.5 bg-gray-800 hover:bg-gray-700 outline outline-1 outline-gray-600 rounded"
|
class=" flex px-4 py-2.5 bg-gray-800 hover:bg-gray-700 outline outline-1 outline-gray-600 rounded-lg"
|
||||||
on:click={regenerateResponse}
|
on:click={regenerateResponse}
|
||||||
>
|
>
|
||||||
<div class=" self-center mr-1">
|
<div class=" self-center mr-1">
|
||||||
|
|
Loading…
Reference in a new issue