From c4fd39fe83747af7e975f8cee7ac3669a114fa04 Mon Sep 17 00:00:00 2001 From: Samuel Date: Sat, 9 Nov 2024 06:48:51 +0000 Subject: [PATCH] change native_tool_call default value to false --- src/lib/components/chat/Chat.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte index 62c21ef3d..de391600e 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -1169,7 +1169,7 @@ model?.info?.params?.native_tool_call ?? $settings?.params?.native_tool_call ?? params?.native_tool_call ?? - true; + false; const [res, controller] = await generateChatCompletion(localStorage.token, { stream: stream, native_tool_call: native_tool_call,