From d2e57e4ac8578d357180b4b9a88606edc61cb1aa Mon Sep 17 00:00:00 2001 From: "Thomas G. Lopes" <26071571+TGlide@users.noreply.github.com> Date: Mon, 6 Oct 2025 19:23:35 +0100 Subject: [PATCH] add mask to list --- src/routes/settings/(nav)/+layout.svelte | 177 ++++++++++++++++------- 1 file changed, 128 insertions(+), 49 deletions(-) diff --git a/src/routes/settings/(nav)/+layout.svelte b/src/routes/settings/(nav)/+layout.svelte index 0780c516e40..c648ea2651b 100644 --- a/src/routes/settings/(nav)/+layout.svelte +++ b/src/routes/settings/(nav)/+layout.svelte @@ -128,7 +128,7 @@ {#if !(showContent && browser && !isDesktop(window))}
@@ -140,7 +140,7 @@ -
+
- {#each data.models - .filter((el) => !el.unlisted) - .filter((el) => { - const haystack = normalize(`${el.id} ${el.name ?? ""} ${el.displayName ?? ""}`); - return queryTokens.every((q) => haystack.includes(q)); - }) as model} - - {/each} + + {#if $settings.multimodalOverrides?.[model.id] ?? model.multimodal} + + + + {/if} + + {#if $settings.customPrompts?.[model.id]} + + {/if} + {#if model.id === $settings.activeModel} +
+ Active +
+ {/if} +
+ {/each} +
+ +