webui: Fix Attachments not being included in completion request (#19731)
* fix: Add missing argument * chore: update webui build output
This commit is contained in:
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());
|
||||||
|
|||||||
Reference in New Issue
Block a user