* feat: Add shimmer text animation for processing state indicators * feat: Redesign CollapsibleContentBlock component with improved UX * feat: Add conditional setting display support with dependsOn field * feat: Add showAgenticTurnStats setting for per-turn statistics * feat: Update ChatMessageAgenticContent with improved UI and new features * feat: Enhance file read tool UI/UX * feat: Refine styling of collapsible content and code preview blocks * feat: add terminal variant to CollapsibleContentBlock * feat: add built-in tools UI registry * feat: extract ChatMessageReasoningBlock and ChatMessageToolCallBlock * refactor: simplify ChatMessageAgenticContent to use extracted blocks * fix: correct markdown content block margin spacing * fix: reorganize SettingsChatFields layout and reset button positioning * fix: use direct map access in agentic store session methods * refactor: remove reasoning preview/throttle system from CollapsibleContentBlock * feat: add auto-scroll to reasoning block and remove showThoughtInProgress * feat: add ChatMessageToolCallDateTime component and support for new tool types * feat: improve auto-scroll reliability in reasoning block with RAF coalescing and MutationObserver * feat: show MCP server favicon for tools without a built-in icon * feat: add search-results parsing utilities and tests * feat: add ChatMessageToolCallSearchResults component * feat: integrate search results rendering into ChatMessageAgenticContent * feat: display tool call input alongside output in ChatMessageToolCallBlock * style: use muted foreground color in reasoning block content * chore: Format * feat: Refine reasoning block layout and make pending thoughts display configurable * feat: Stream tool call code blocks with auto-scroll and handle partial JSON * feat: add streaming permission gate infrastructure * feat: wire permission gate into the agentic loop * fix: bail out on abort and skip already-approved tool calls * fix: clear partial tool calls on abort and savePartialResponse * test: cover partial tool call cleanup end-to-end * refactor: Remove streaming permission gate logic * fix: Correct autoscroll and streaming gates for tool calls and reasoning blocks * refactor: Chat Message Assistant componentization * fix: Show health metadata for disabled MCP servers and promote connections on enable * fix: Inherit global enabled state for missing MCP per-chat overrides * refactor: Cleanup * refactor: Split ChatMessageToolCallBlock into dedicated components * feat: Add live streaming and auto-scroll for tool execution output * feat: Add line numbers and change markers to file edit diffs * chore: Formatting * feat: Add type definitions and utilities for recommended MCP servers * feat: Add recommended MCP servers configuration and storage key * feat: Add McpServerCardCompact component for recommended servers * feat: Add recommended servers section to Add New Server dialog * feat: Update McpServerForm to support authorization requirements * feat: Add select-none classes for text selection prevention * feat: Add recommended MCP server icon assets * refactor: Store dismissed MCP recommendations as a boolean flag * feat: Render tool results as JSON or Markdown based on detected content type * feat: UI improvement * feat: Render search block early and update heading to show execution state * fix: Prevent non-web-search tools from triggering the search UI block * refactor: Cleanup * refactor: Extract hardcoded icon size classes into shared constants * refactor: Extract hardcoded tool result separator into a shared constant * refactor: Tool Calls UI/logic * refactor: Cleanup * refactor: Cleanup * refactor: Cleanup
204 lines
6.5 KiB
Svelte
204 lines
6.5 KiB
Svelte
<script lang="ts">
|
|
import { ICON_CLASS_DEFAULT } from '$lib/constants/css-classes';
|
|
import {
|
|
CircleAlert,
|
|
Heart,
|
|
HeartOff,
|
|
Info,
|
|
Loader2,
|
|
Power,
|
|
PowerOff,
|
|
RotateCw
|
|
} from '@lucide/svelte';
|
|
import { ActionIcon, ModelId } from '$lib/components/app';
|
|
import ModelLoadHighlight from './ModelLoadHighlight.svelte';
|
|
import type { ModelOption } from '$lib/types/models';
|
|
import { ServerModelStatus } from '$lib/enums';
|
|
import { modelsStore, routerModels } from '$lib/stores/models.svelte';
|
|
import { modelLoadFraction, modelLoadProgressText } from '$lib/utils';
|
|
|
|
interface Props {
|
|
option: ModelOption;
|
|
isSelected: boolean;
|
|
isHighlighted: boolean;
|
|
isFav: boolean;
|
|
hideOrgName?: boolean;
|
|
onSelect: (modelId: string) => void;
|
|
onMouseEnter: () => void;
|
|
onKeyDown: (e: KeyboardEvent) => void;
|
|
onInfoClick?: (modelName: string) => void;
|
|
}
|
|
|
|
let {
|
|
option,
|
|
isSelected,
|
|
isHighlighted,
|
|
isFav,
|
|
hideOrgName = false,
|
|
onSelect,
|
|
onMouseEnter,
|
|
onKeyDown,
|
|
onInfoClick
|
|
}: Props = $props();
|
|
|
|
let currentRouterModels = $derived(routerModels());
|
|
let serverStatus = $derived.by(() => {
|
|
const model = currentRouterModels.find((m) => m.id === option.model);
|
|
return (model?.status?.value as ServerModelStatus) ?? null;
|
|
});
|
|
let isOperationInProgress = $derived(modelsStore.isModelOperationInProgress(option.model));
|
|
let isFailed = $derived(serverStatus === ServerModelStatus.FAILED);
|
|
let isSleeping = $derived(serverStatus === ServerModelStatus.SLEEPING);
|
|
let isLoaded = $derived(
|
|
(serverStatus === ServerModelStatus.LOADED || isSleeping) && !isOperationInProgress
|
|
);
|
|
let isLoading = $derived(serverStatus === ServerModelStatus.LOADING || isOperationInProgress);
|
|
|
|
let loadProgress = $derived(isLoading ? modelsStore.getLoadProgress(option.model) : null);
|
|
let loadPercent = $derived(Math.round(modelLoadFraction(loadProgress) * 100));
|
|
let loadTitle = $derived(modelLoadProgressText(loadProgress));
|
|
</script>
|
|
|
|
<div
|
|
class={[
|
|
'group relative flex w-full items-center gap-2 rounded-sm p-2 text-left text-sm transition focus:outline-none',
|
|
'cursor-pointer hover:bg-muted focus:bg-muted',
|
|
(isSelected || isHighlighted) && 'bg-accent text-accent-foreground',
|
|
!(isSelected || isHighlighted) && 'hover:bg-accent hover:text-accent-foreground',
|
|
isLoaded ? 'text-popover-foreground' : 'text-muted-foreground'
|
|
]}
|
|
role="option"
|
|
aria-selected={isSelected || isHighlighted}
|
|
title={loadTitle}
|
|
tabindex="0"
|
|
onclick={() => onSelect(option.id)}
|
|
onmouseenter={onMouseEnter}
|
|
onkeydown={onKeyDown}
|
|
>
|
|
<ModelId
|
|
modelId={option.model}
|
|
{hideOrgName}
|
|
aliases={option.aliases}
|
|
tags={option.tags}
|
|
class="flex-1"
|
|
/>
|
|
|
|
<div class="flex shrink-0 items-center gap-1">
|
|
<!-- svelte-ignore a11y_no_static_element_interactions -->
|
|
<!-- svelte-ignore a11y_click_events_have_key_events -->
|
|
<div
|
|
class="pointer-events-none flex items-center justify-center gap-0.75 pl-2 opacity-0 group-hover:pointer-events-auto group-hover:opacity-100 [@media(pointer:coarse)]:pointer-events-auto [@media(pointer:coarse)]:opacity-100"
|
|
onclick={(e) => e.stopPropagation()}
|
|
>
|
|
{#if isFav}
|
|
<ActionIcon
|
|
iconSize="h-2.5 w-2.5"
|
|
icon={HeartOff}
|
|
tooltip="Remove from favorites"
|
|
class="h-3 w-3 hover:text-foreground"
|
|
onclick={() => modelsStore.toggleFavorite(option.model)}
|
|
/>
|
|
{:else}
|
|
<ActionIcon
|
|
iconSize="h-2.5 w-2.5"
|
|
icon={Heart}
|
|
tooltip="Add to favorites"
|
|
class="h-3 w-3 hover:text-foreground"
|
|
onclick={() => modelsStore.toggleFavorite(option.model)}
|
|
/>
|
|
{/if}
|
|
|
|
<!-- info button: only shown when model is loaded and callback is provided -->
|
|
{#if isLoaded && onInfoClick}
|
|
<ActionIcon
|
|
iconSize="h-2.5 w-2.5"
|
|
icon={Info}
|
|
tooltip="Model information"
|
|
class="h-3 w-3 hover:text-foreground"
|
|
onclick={() => onInfoClick(option.model)}
|
|
/>
|
|
{/if}
|
|
</div>
|
|
|
|
{#if isLoading}
|
|
<div class="flex w-4 items-center justify-center [@media(pointer:coarse)]:w-5">
|
|
<Loader2 class="{ICON_CLASS_DEFAULT} animate-spin text-muted-foreground" />
|
|
</div>
|
|
{:else if isFailed}
|
|
<div class="flex w-4 items-center justify-center [@media(pointer:coarse)]:w-auto">
|
|
<CircleAlert
|
|
class="h-3.5 w-3.5 text-red-500 group-hover:hidden [@media(pointer:coarse)]:hidden"
|
|
/>
|
|
|
|
<div class="hidden group-hover:flex [@media(pointer:coarse)]:flex">
|
|
<ActionIcon
|
|
iconSize="h-2.5 w-2.5"
|
|
icon={RotateCw}
|
|
tooltip="Retry loading model"
|
|
class="h-3 w-3 text-red-500 hover:text-foreground"
|
|
onclick={() => modelsStore.loadModel(option.model)}
|
|
stopPropagationOnClick
|
|
/>
|
|
</div>
|
|
</div>
|
|
{:else if isSleeping}
|
|
<div class="flex w-4 items-center justify-center [@media(pointer:coarse)]:w-auto">
|
|
<span
|
|
class="h-2 w-2 rounded-full bg-orange-400 group-hover:hidden [@media(pointer:coarse)]:hidden"
|
|
></span>
|
|
|
|
<div class="hidden group-hover:flex [@media(pointer:coarse)]:flex">
|
|
<ActionIcon
|
|
iconSize="h-2.5 w-2.5"
|
|
icon={PowerOff}
|
|
tooltip="Unload model"
|
|
class="h-3 w-3 text-red-500 hover:text-red-600 [@media(pointer:coarse)]:text-amber-500 [@media(pointer:coarse)]:hover:text-amber-600"
|
|
onclick={(e) => {
|
|
e?.stopPropagation();
|
|
modelsStore.unloadModel(option.model);
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
{:else if isLoaded}
|
|
<div class="flex w-4 items-center justify-center [@media(pointer:coarse)]:w-auto">
|
|
<span
|
|
class="h-2 w-2 rounded-full bg-green-500 group-hover:hidden [@media(pointer:coarse)]:hidden"
|
|
></span>
|
|
|
|
<div class="hidden group-hover:flex [@media(pointer:coarse)]:flex">
|
|
<ActionIcon
|
|
iconSize="h-2.5 w-2.5"
|
|
icon={PowerOff}
|
|
tooltip="Unload model"
|
|
class="h-3 w-3 text-red-500 hover:text-red-600 [@media(pointer:coarse)]:text-green-500 [@media(pointer:coarse)]:hover:text-green-600"
|
|
onclick={() => modelsStore.unloadModel(option.model)}
|
|
stopPropagationOnClick
|
|
/>
|
|
</div>
|
|
</div>
|
|
{:else}
|
|
<div class="flex w-4 items-center justify-center [@media(pointer:coarse)]:w-auto">
|
|
<span
|
|
class="h-2 w-2 rounded-full bg-muted-foreground/50 group-hover:hidden [@media(pointer:coarse)]:hidden"
|
|
></span>
|
|
|
|
<div class="hidden group-hover:flex [@media(pointer:coarse)]:flex">
|
|
<ActionIcon
|
|
iconSize="h-2.5 w-2.5"
|
|
icon={Power}
|
|
tooltip="Load model"
|
|
class="h-3 w-3 [@media(pointer:coarse)]:text-muted-foreground"
|
|
onclick={() => modelsStore.loadModel(option.model)}
|
|
stopPropagationOnClick
|
|
/>
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
|
|
{#if isLoading}
|
|
<ModelLoadHighlight percent={loadPercent} />
|
|
{/if}
|
|
</div>
|