]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
webui: Fix Attachments not being included in completion request (#19731)
authorAleksander Grygier <redacted>
Thu, 19 Feb 2026 09:27:38 +0000 (10:27 +0100)
committerGitHub <redacted>
Thu, 19 Feb 2026 09:27:38 +0000 (10:27 +0100)
* fix: Add missing argument

* chore: update webui build output

tools/server/public/index.html.gz
tools/server/webui/src/lib/stores/chat.svelte.ts

index 060c173d9378cdff3fdf3979e35a10c6c29a8a26..cec38413a5fe08dc7ba56a44f80dddfb8e6ee15e 100644 (file)
Binary files a/tools/server/public/index.html.gz and b/tools/server/public/index.html.gz differ
index 5dfec293ab37e5f843ae83c59cd2d5265495e067..66d6eaf0d30ad8acfa3dfd2cdbb171ff0557e727 100644 (file)
@@ -498,7 +498,8 @@ class ChatStore {
                                MessageRole.USER,
                                content,
                                MessageType.TEXT,
-                               parentIdForUserMessage ?? '-1'
+                               parentIdForUserMessage ?? '-1',
+                               extras
                        );
                        if (isNewConversation && content)
                                await conversationsStore.updateConversationName(currentConv.id, content.trim());