We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81fe36e commit 0ba18ebCopy full SHA for 0ba18eb
tools/server/public/index.html.gz
-1.99 KB
tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessageAssistant.svelte
@@ -83,7 +83,9 @@
83
toolCallContent = null
84
}: Props = $props();
85
86
- const toolCalls = $derived(Array.isArray(toolCallContent) ? (toolCallContent as ApiChatCompletionToolCall[]) : null);
+ const toolCalls = $derived(
87
+ Array.isArray(toolCallContent) ? (toolCallContent as ApiChatCompletionToolCall[]) : null
88
+ );
89
const fallbackToolCalls = $derived(typeof toolCallContent === 'string' ? toolCallContent : null);
90
91
const processingState = useProcessingState();
0 commit comments