From da4586f27d66e27129986fb6ef65bda74114d717 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Sun, 9 Jun 2024 15:00:38 -0700 Subject: [PATCH] refac: task models --- src/lib/apis/index.ts | 61 +++++++++++++++++++ .../admin/Settings/Interface.svelte | 40 +++++++----- 2 files changed, 86 insertions(+), 15 deletions(-) diff --git a/src/lib/apis/index.ts b/src/lib/apis/index.ts index fc1d850b3..c40815611 100644 --- a/src/lib/apis/index.ts +++ b/src/lib/apis/index.ts @@ -104,6 +104,67 @@ export const chatCompleted = async (token: string, body: ChatCompletedForm) => { return res; }; +export const getTaskConfig = async (token: string = '') => { + let error = null; + + const res = await fetch(`${WEBUI_BASE_URL}/api/task/config`, { + method: 'GET', + headers: { + Accept: 'application/json', + 'Content-Type': 'application/json', + ...(token && { authorization: `Bearer ${token}` }) + } + }) + .then(async (res) => { + if (!res.ok) throw await res.json(); + return res.json(); + }) + .catch((err) => { + console.log(err); + error = err; + return null; + }); + + if (error) { + throw error; + } + + return res; +}; + +export const updateTaskConfig = async (token: string, config: object) => { + let error = null; + + const res = await fetch(`${WEBUI_BASE_URL}/api/task/config/update`, { + method: 'POST', + headers: { + Accept: 'application/json', + 'Content-Type': 'application/json', + ...(token && { authorization: `Bearer ${token}` }) + }, + body: JSON.stringify(config) + }) + .then(async (res) => { + if (!res.ok) throw await res.json(); + return res.json(); + }) + .catch((err) => { + console.log(err); + if ('detail' in err) { + error = err.detail; + } else { + error = err; + } + return null; + }); + + if (error) { + throw error; + } + + return res; +}; + export const generateTitle = async ( token: string = '', model: string, diff --git a/src/lib/components/admin/Settings/Interface.svelte b/src/lib/components/admin/Settings/Interface.svelte index 4ce312da1..fda7461dc 100644 --- a/src/lib/components/admin/Settings/Interface.svelte +++ b/src/lib/components/admin/Settings/Interface.svelte @@ -2,7 +2,7 @@ import { v4 as uuidv4 } from 'uuid'; import { toast } from 'svelte-sonner'; - import { getBackendConfig } from '$lib/apis'; + import { getBackendConfig, getTaskConfig, updateTaskConfig } from '$lib/apis'; import { setDefaultPromptSuggestions } from '$lib/apis/configs'; import { config, models, settings, user } from '$lib/stores'; import { createEventDispatcher, onMount, getContext } from 'svelte'; @@ -19,26 +19,27 @@ const i18n = getContext('i18n'); - let taskModel = ''; - let taskModelExternal = ''; - - let titleGenerationPrompt = ''; + let taskConfig = { + TASK_MODEL: '', + TASK_MODEL_EXTERNAL: '', + TITLE_GENERATION_PROMPT_TEMPLATE: '', + SEARCH_QUERY_GENERATION_PROMPT_TEMPLATE: '' + }; let promptSuggestions = []; let banners: Banner[] = []; const updateInterfaceHandler = async () => { + taskConfig = await updateTaskConfig(localStorage.token, taskConfig); + promptSuggestions = await setDefaultPromptSuggestions(localStorage.token, promptSuggestions); await updateBanners(); + await config.set(await getBackendConfig()); }; onMount(async () => { - taskModel = $settings?.title?.model ?? ''; - taskModelExternal = $settings?.title?.modelExternal ?? ''; - titleGenerationPrompt = - $settings?.title?.prompt ?? - `Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title': {{prompt}}`; + taskConfig = await getTaskConfig(localStorage.token); promptSuggestions = $config?.default_prompt_suggestions; @@ -57,7 +58,7 @@ dispatch('save'); }} > -
+
{$i18n.t('Set Task Model')}
@@ -87,7 +88,7 @@
{$i18n.t('Local Models')}
@@ -119,9 +120,18 @@
{$i18n.t('Title Generation Prompt')}