Skip to content

Commit 0ba18eb

Browse files
chore: npm run format & update webui build output
1 parent 81fe36e commit 0ba18eb

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

tools/server/public/index.html.gz

-1.99 KB
Binary file not shown.

tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessageAssistant.svelte

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@
8383
toolCallContent = null
8484
}: Props = $props();
8585
86-
const toolCalls = $derived(Array.isArray(toolCallContent) ? (toolCallContent as ApiChatCompletionToolCall[]) : null);
86+
const toolCalls = $derived(
87+
Array.isArray(toolCallContent) ? (toolCallContent as ApiChatCompletionToolCall[]) : null
88+
);
8789
const fallbackToolCalls = $derived(typeof toolCallContent === 'string' ? toolCallContent : null);
8890
8991
const processingState = useProcessingState();

0 commit comments

Comments
 (0)