mirror of
https://github.com/open-webui/open-webui
synced 2025-06-26 18:26:48 +00:00
enh: reintroduce model management to models settings
This commit is contained in:
parent
59c349de00
commit
af48f346f1
File diff suppressed because it is too large
Load Diff
@ -27,6 +27,8 @@
|
|||||||
import Cog6 from '$lib/components/icons/Cog6.svelte';
|
import Cog6 from '$lib/components/icons/Cog6.svelte';
|
||||||
import ConfigureModelsModal from './Models/ConfigureModelsModal.svelte';
|
import ConfigureModelsModal from './Models/ConfigureModelsModal.svelte';
|
||||||
import Wrench from '$lib/components/icons/Wrench.svelte';
|
import Wrench from '$lib/components/icons/Wrench.svelte';
|
||||||
|
import ArrowDownTray from '$lib/components/icons/ArrowDownTray.svelte';
|
||||||
|
import ManageModelsModal from './Models/ManageModelsModal.svelte';
|
||||||
|
|
||||||
let importFiles;
|
let importFiles;
|
||||||
let modelsImportInputElement: HTMLInputElement;
|
let modelsImportInputElement: HTMLInputElement;
|
||||||
@ -40,6 +42,7 @@
|
|||||||
let selectedModelId = null;
|
let selectedModelId = null;
|
||||||
|
|
||||||
let showConfigModal = false;
|
let showConfigModal = false;
|
||||||
|
let showManageModal = false;
|
||||||
|
|
||||||
$: if (models) {
|
$: if (models) {
|
||||||
filteredModels = models
|
filteredModels = models
|
||||||
@ -139,6 +142,7 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<ConfigureModelsModal bind:show={showConfigModal} initHandler={init} />
|
<ConfigureModelsModal bind:show={showConfigModal} initHandler={init} />
|
||||||
|
<ManageModelsModal bind:show={showManageModal} />
|
||||||
|
|
||||||
{#if models !== null}
|
{#if models !== null}
|
||||||
{#if selectedModelId === null}
|
{#if selectedModelId === null}
|
||||||
@ -152,20 +156,20 @@
|
|||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="flex items-center">
|
<div class="flex items-center gap-1.5">
|
||||||
<!-- <Tooltip content={$i18n.t('Manage')}>
|
<Tooltip content={$i18n.t('Manage Models')}>
|
||||||
<button
|
<button
|
||||||
class=" p-1 rounded-full flex gap-1 items-center"
|
class=" p-1 rounded-full flex gap-1 items-center"
|
||||||
type="button"
|
type="button"
|
||||||
on:click={() => {
|
on:click={() => {
|
||||||
showConfigModal = true;
|
showManageModal = true;
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Wrench />
|
<ArrowDownTray />
|
||||||
</button>
|
</button>
|
||||||
</Tooltip> -->
|
</Tooltip>
|
||||||
|
|
||||||
<Tooltip content={$i18n.t('Configure')}>
|
<Tooltip content={$i18n.t('Settings')}>
|
||||||
<button
|
<button
|
||||||
class=" p-1 rounded-full flex gap-1 items-center"
|
class=" p-1 rounded-full flex gap-1 items-center"
|
||||||
type="button"
|
type="button"
|
||||||
|
@ -113,7 +113,7 @@
|
|||||||
<div>
|
<div>
|
||||||
<div class=" flex justify-between dark:text-gray-100 px-5 pt-4 pb-2">
|
<div class=" flex justify-between dark:text-gray-100 px-5 pt-4 pb-2">
|
||||||
<div class=" text-lg font-medium self-center font-primary">
|
<div class=" text-lg font-medium self-center font-primary">
|
||||||
{$i18n.t('Configure Models')}
|
{$i18n.t('Settings')}
|
||||||
</div>
|
</div>
|
||||||
<button
|
<button
|
||||||
class="self-center"
|
class="self-center"
|
||||||
|
@ -0,0 +1,26 @@
|
|||||||
|
<script>
|
||||||
|
import { getContext, onMount } from 'svelte';
|
||||||
|
const i18n = getContext('i18n');
|
||||||
|
|
||||||
|
import ManageOllama from './ManageOllama.svelte';
|
||||||
|
|
||||||
|
export let ollamaConfig = null;
|
||||||
|
|
||||||
|
let selectedUrlIdx = 0;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{#if ollamaConfig}
|
||||||
|
<div class="flex-1 mb-2.5 pr-1.5 rounded-lg bg-gray-50 dark:text-gray-300 dark:bg-gray-850">
|
||||||
|
<select
|
||||||
|
class="w-full py-2 px-4 text-sm outline-none bg-transparent"
|
||||||
|
bind:value={selectedUrlIdx}
|
||||||
|
placeholder={$i18n.t('Select an Ollama instance')}
|
||||||
|
>
|
||||||
|
{#each ollamaConfig.OLLAMA_BASE_URLS as url, idx}
|
||||||
|
<option value={idx}>{url}</option>
|
||||||
|
{/each}
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ManageOllama urlIdx={selectedUrlIdx} />
|
||||||
|
{/if}
|
1018
src/lib/components/admin/Settings/Models/Manage/ManageOllama.svelte
Normal file
1018
src/lib/components/admin/Settings/Models/Manage/ManageOllama.svelte
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,110 @@
|
|||||||
|
<script>
|
||||||
|
import { toast } from 'svelte-sonner';
|
||||||
|
|
||||||
|
import { createEventDispatcher, getContext, onMount } from 'svelte';
|
||||||
|
const i18n = getContext('i18n');
|
||||||
|
const dispatch = createEventDispatcher();
|
||||||
|
|
||||||
|
import { user } from '$lib/stores';
|
||||||
|
|
||||||
|
import Modal from '$lib/components/common/Modal.svelte';
|
||||||
|
import ManageOllama from './Manage/ManageOllama.svelte';
|
||||||
|
import { getOllamaConfig } from '$lib/apis/ollama';
|
||||||
|
import Spinner from '$lib/components/common/Spinner.svelte';
|
||||||
|
import ManageMultipleOllama from './Manage/ManageMultipleOllama.svelte';
|
||||||
|
|
||||||
|
export let show = false;
|
||||||
|
|
||||||
|
let selected = null;
|
||||||
|
let ollamaConfig = null;
|
||||||
|
|
||||||
|
onMount(async () => {
|
||||||
|
if ($user.role === 'admin') {
|
||||||
|
await Promise.all([
|
||||||
|
(async () => {
|
||||||
|
ollamaConfig = await getOllamaConfig(localStorage.token);
|
||||||
|
})()
|
||||||
|
]);
|
||||||
|
|
||||||
|
if (ollamaConfig) {
|
||||||
|
selected = 'ollama';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
selected = '';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<Modal size="sm" bind:show>
|
||||||
|
<div>
|
||||||
|
<div class=" flex justify-between dark:text-gray-100 px-5 pt-4">
|
||||||
|
<div class=" text-lg font-medium self-center font-primary">
|
||||||
|
{$i18n.t('Manage Models')}
|
||||||
|
</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>
|
||||||
|
|
||||||
|
<div class="flex flex-col md:flex-row w-full px-3 pb-4 md:space-x-4 dark:text-gray-200">
|
||||||
|
<div class=" flex flex-col w-full sm:flex-row sm:justify-center sm:space-x-6">
|
||||||
|
{#if selected === ''}
|
||||||
|
<div class=" py-5 text-gray-400 text-xs">
|
||||||
|
<div>
|
||||||
|
{$i18n.t('No inference engine with management support found')}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{:else if selected !== null}
|
||||||
|
<div class=" flex w-full flex-col">
|
||||||
|
<div
|
||||||
|
class="flex gap-1 scrollbar-none overflow-x-auto w-fit text-center text-sm font-medium rounded-full bg-transparent dark:text-gray-200"
|
||||||
|
>
|
||||||
|
<button
|
||||||
|
class="min-w-fit rounded-full p-1.5 {selected === 'ollama'
|
||||||
|
? ''
|
||||||
|
: 'text-gray-300 dark:text-gray-600 hover:text-gray-700 dark:hover:text-white'} transition"
|
||||||
|
on:click={() => {
|
||||||
|
selected = 'ollama';
|
||||||
|
}}>{$i18n.t('Ollama')}</button
|
||||||
|
>
|
||||||
|
|
||||||
|
<!-- <button
|
||||||
|
class="min-w-fit rounded-full p-1.5 {selected === 'llamacpp'
|
||||||
|
? ''
|
||||||
|
: 'text-gray-300 dark:text-gray-600 hover:text-gray-700 dark:hover:text-white'} transition"
|
||||||
|
on:click={() => {
|
||||||
|
selected = 'llamacpp';
|
||||||
|
}}>{$i18n.t('Llama.cpp')}</button
|
||||||
|
> -->
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class=" px-1.5 py-1">
|
||||||
|
{#if selected === 'ollama'}
|
||||||
|
<ManageMultipleOllama {ollamaConfig} />
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{:else}
|
||||||
|
<div class=" py-5">
|
||||||
|
<Spinner />
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Modal>
|
Loading…
Reference in New Issue
Block a user