Spaces:
Runtime error
Runtime error
File size: 8,912 Bytes
0b5f169 fbef5e8 1778c9e 9b4caaa 7bfbc58 1778c9e 97c4991 7357f85 97c4991 0a59c60 058d10c 97c4991 e63e7c7 936176c 2087f3e 1778c9e 936176c 2087f3e 1754cbb 7bfbc58 a88830a 97c4991 7bfbc58 a0911b1 7bfbc58 a0911b1 7bfbc58 a0911b1 7bfbc58 a0911b1 7bfbc58 97c4991 d37b3c2 936176c 427a3a2 28faefd fbef5e8 28faefd f250f57 28faefd 7bfbc58 f250f57 28faefd 84f775e 28faefd 2087f3e 28faefd 97c4991 28faefd 97c4991 28faefd 97c4991 28faefd 97c4991 28faefd 84f775e 28faefd 7bfbc58 84f775e 0b5f169 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 |
<script lang="ts">
import { autofocus } from "$lib/attachments/autofocus.js";
import type { ConversationClass } from "$lib/state/conversations.svelte";
import { models } from "$lib/state/models.svelte.js";
import { VirtualScroll } from "$lib/spells/virtual-scroll.svelte.js";
import type { CustomModel, Model } from "$lib/types.js";
import { noop } from "$lib/utils/noop.js";
import fuzzysearch from "$lib/utils/search.js";
import { sleep } from "$lib/utils/sleep.js";
import { Combobox } from "melt/builders";
import { untrack } from "svelte";
import typia from "typia";
import IconAdd from "~icons/carbon/add";
import IconCube from "~icons/carbon/cube";
import IconEdit from "~icons/carbon/edit";
import IconSearch from "~icons/carbon/search";
import IconStar from "~icons/carbon/star";
import IconEye from "~icons/carbon/view";
import Tooltip from "../tooltip.svelte";
import { openCustomModelConfig } from "./custom-model-config.svelte";
interface Props {
onModelSelect?: (model: string) => void;
onClose?: () => void;
conversation: ConversationClass;
}
let { onModelSelect, onClose, conversation }: Props = $props();
let backdropEl = $state<HTMLDivElement>();
let query = $state("");
const trending = $derived(fuzzysearch({ needle: query, haystack: models.trending, property: "id" }));
const other = $derived(fuzzysearch({ needle: query, haystack: models.nonTrending, property: "id" }));
const custom = $derived(fuzzysearch({ needle: query, haystack: models.custom, property: "id" }));
// Combine all filtered models into sections for virtualization
type SectionItem =
| { type: "header"; content: string }
| { type: "model"; content: Model | CustomModel | "__custom__"; trending?: boolean };
const allFilteredModels = $derived.by((): SectionItem[] => {
const sections: SectionItem[] = [];
if (trending.length > 0) {
sections.push({ type: "header", content: "Trending" });
trending.forEach(model => sections.push({ type: "model", content: model, trending: true }));
}
sections.push({ type: "header", content: "Custom endpoints" });
custom.forEach(model => sections.push({ type: "model", content: model }));
sections.push({ type: "model", content: "__custom__" }); // Add custom button
if (other.length > 0) {
sections.push({ type: "header", content: "Other models" });
other.forEach(model => sections.push({ type: "model", content: model }));
}
return sections;
});
const virtualScroll = new VirtualScroll({
itemHeight: 30, // Approximate height of each item
overscan: 5,
totalItems: () => allFilteredModels.length,
});
function handleBackdropClick(event: MouseEvent) {
event.stopPropagation();
if (window?.getSelection()?.toString()) {
return;
}
if (event.target === backdropEl) {
onClose?.();
}
}
const isCustom = typia.createIs<CustomModel>();
const combobox = new Combobox<string | undefined>({
onOpenChange(o) {
if (!o) onClose?.();
},
floatingConfig: {
onCompute: noop,
},
sameWidth: false,
value: () => undefined,
onValueChange(modelId) {
if (!modelId) return;
onModelSelect?.(modelId);
onClose?.();
},
onNavigate(current, direction) {
if (current === "__custom__") return null;
const modelItems = allFilteredModels.filter(item => item.type === "model");
const currIdx = modelItems.findIndex(item => typeof item.content === "object" && item.content.id === current);
let nextIdx: number;
if (direction === "next") {
nextIdx = currIdx === -1 ? 0 : (currIdx + 1) % modelItems.length;
} else {
nextIdx = currIdx === -1 ? modelItems.length - 1 : (currIdx - 1 + modelItems.length) % modelItems.length;
}
const nextItem = modelItems[nextIdx];
if (!nextItem) return null;
// Scroll to the item
const allItems = allFilteredModels;
const actualIdx = allItems.findIndex(item => item === nextItem);
if (actualIdx !== -1) {
virtualScroll.scrollToIndex(actualIdx);
}
// Return the content for highlighting
return nextItem.content === "__custom__"
? "__custom__"
: typeof nextItem.content === "object"
? nextItem.content.id
: null;
},
});
$effect(() => {
untrack(() => combobox.highlight(conversation.model.id));
// Workaround while this component does not use a <dialog />
sleep(10).then(() => {
combobox.open = true;
});
});
</script>
<!-- svelte-ignore a11y_no_static_element_interactions -->
<!-- svelte-ignore a11y_click_events_have_key_events -->
<div class="fixed inset-0 z-50 h-dvh bg-black/85 pt-32" bind:this={backdropEl} onclick={handleBackdropClick}>
<div
class="abs-x-center md:abs-y-center absolute top-12 flex w-[calc(100%-2rem)] max-w-[600px] flex-col overflow-hidden rounded-lg border bg-white text-gray-900 shadow-md dark:border-gray-800 dark:bg-gray-900 dark:text-gray-300"
>
<div class="flex items-center border-b px-3 dark:border-gray-800">
<div class="mr-2 text-sm">
<IconSearch />
</div>
<input
{...combobox.input}
class="flex h-10 w-full rounded-md bg-transparent py-3 text-sm placeholder-gray-400 outline-hidden"
placeholder="Search models ..."
bind:value={query}
{@attach autofocus()}
/>
</div>
<div
class="max-h-[220px] overflow-x-hidden overflow-y-auto md:max-h-[300px]"
{...combobox.content}
popover={undefined}
{...virtualScroll.container}
>
{#snippet modelEntry(model: Model | CustomModel, trending?: boolean)}
{@const [nameSpace, modelName] = model.id.split("/")}
<div
class="flex w-full cursor-pointer items-center px-2 py-1.5 text-sm
data-[highlighted]:bg-gray-100 data-[highlighted]:dark:bg-gray-800"
data-model
{...combobox.getOption(model.id)}
>
{#if trending}
<div class=" mr-1.5 size-4 text-yellow-400">
<IconStar />
</div>
{/if}
{#if modelName}
<span class="inline-flex items-center">
<span class="text-gray-500 dark:text-gray-400">{nameSpace}</span>
<span class="mx-1 text-gray-300 dark:text-gray-700">/</span>
<span class="text-black dark:text-white">{modelName}</span>
</span>
{:else}
<span class="text-black dark:text-white">{nameSpace}</span>
{/if}
{#if "pipeline_tag" in model && model.pipeline_tag === "image-text-to-text"}
<Tooltip openDelay={100}>
{#snippet trigger(tooltip)}
<div
class="ml-2 grid size-5 place-items-center rounded bg-gray-500/10 text-gray-500 dark:bg-gray-500/20 dark:text-gray-300"
{...tooltip.trigger}
>
<IconEye class="size-3.5" />
</div>
{/snippet}
Image text-to-text
</Tooltip>
{/if}
{#if isCustom(model)}
<Tooltip openDelay={100}>
{#snippet trigger(tooltip)}
<div
class="ml-2 grid size-5 place-items-center rounded bg-gray-500/10 text-gray-500 dark:bg-gray-500/20 dark:text-gray-300"
{...tooltip.trigger}
>
<IconCube class="size-3.5" />
</div>
{/snippet}
Custom Model
</Tooltip>
<Tooltip>
{#snippet trigger(tooltip)}
<button
class="mr-1 ml-auto grid size-4.5 place-items-center rounded-sm bg-gray-100 text-xs
hover:bg-gray-200 dark:bg-gray-600 dark:hover:bg-gray-500"
aria-label="Add custom model"
{...tooltip.trigger}
onclick={e => {
e.stopPropagation();
onClose?.();
openCustomModelConfig({
model,
onSubmit: model => {
onModelSelect?.(model.id);
},
});
}}
>
<IconEdit class="size-3" />
</button>
{/snippet}
<span class="text-sm">Edit</span>
</Tooltip>
{/if}
</div>
{/snippet}
<!-- Virtual scroll container -->
<div style="height: {virtualScroll.totalHeight}px; position: relative;">
<div style="transform: translateY({virtualScroll.offsetY}px);">
{#each virtualScroll.getVisibleItems(allFilteredModels) as { item }}
{#if item.type === "header"}
<div class="px-2 py-1.5 text-xs font-medium text-gray-500">{item.content}</div>
{:else if item.content === "__custom__"}
<div
class="flex w-full cursor-pointer items-center gap-2 px-2 py-1.5 text-sm text-gray-500 data-[highlighted]:bg-blue-500/15 data-[highlighted]:text-blue-600 dark:text-gray-400 dark:data-[highlighted]:text-blue-300"
{...combobox.getOption("__custom__", "custom", () => {
onClose?.();
openCustomModelConfig({
onSubmit: model => {
onModelSelect?.(model.id);
},
});
})}
>
<IconAdd class="rounded bg-blue-500/10 text-blue-600" />
Add a custom endpoint
</div>
{:else}
{@render modelEntry(item.content, item.trending)}
{/if}
{/each}
</div>
</div>
</div>
</div>
</div>
|