diff --git a/src/lib/components/workspace/Functions.svelte b/src/lib/components/workspace/Functions.svelte index 15793fa01..8f0139009 100644 --- a/src/lib/components/workspace/Functions.svelte +++ b/src/lib/components/workspace/Functions.svelte @@ -3,7 +3,7 @@ import fileSaver from 'file-saver'; const { saveAs } = fileSaver; - import { WEBUI_NAME } from '$lib/stores'; + import { WEBUI_NAME, functions } from '$lib/stores'; import { onMount, getContext } from 'svelte'; import { createNewPrompt, deletePromptByCommand, getPrompts } from '$lib/apis/prompts'; @@ -27,17 +27,6 @@ let showConfirm = false; let query = ''; - - let functions = []; - - onMount(async () => { - functions = await getFunctions(localStorage.token).catch((error) => { - toast.error(error); - return []; - }); - - console.log(functions); - }); @@ -94,7 +83,7 @@
- {#each functions.filter((f) => query === '' || f.name + {#each $functions.filter((f) => query === '' || f.name .toLowerCase() .includes(query.toLowerCase()) || f.id.toLowerCase().includes(query.toLowerCase())) as func}
+
+ func.type === 'filter')} + /> +
+
{$i18n.t('Capabilities')}