webui: Fix Attachments not being included in completion request (#19731)
* fix: Add missing argument * chore: update webui build output
This commit is contained in:
parent
8004f3a8d1
commit
03fd9d3bb4
Binary file not shown.
|
|
@ -498,7 +498,8 @@ class ChatStore {
|
||||||
MessageRole.USER,
|
MessageRole.USER,
|
||||||
content,
|
content,
|
||||||
MessageType.TEXT,
|
MessageType.TEXT,
|
||||||
parentIdForUserMessage ?? '-1'
|
parentIdForUserMessage ?? '-1',
|
||||||
|
extras
|
||||||
);
|
);
|
||||||
if (isNewConversation && content)
|
if (isNewConversation && content)
|
||||||
await conversationsStore.updateConversationName(currentConv.id, content.trim());
|
await conversationsStore.updateConversationName(currentConv.id, content.trim());
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue