This commit is contained in:
Timothy J. Baek 2024-05-30 16:31:55 -07:00
parent 6922529b78
commit e1d65065f5

View File

@ -628,7 +628,9 @@
for (const message of res.messages) { for (const message of res.messages) {
history.messages[message.id] = { history.messages[message.id] = {
...history.messages[message.id], ...history.messages[message.id],
originalContent: history.messages[message.id].content, ...(history.messages[message.id].content !== message.content
? { originalContent: history.messages[message.id].content }
: {}),
...message ...message
}; };
} }
@ -913,7 +915,13 @@
if (res !== null) { if (res !== null) {
// Update chat history with the new messages // Update chat history with the new messages
for (const message of res.messages) { for (const message of res.messages) {
history.messages[message.id] = { ...history.messages[message.id], ...message }; history.messages[message.id] = {
...history.messages[message.id],
...(history.messages[message.id].content !== message.content
? { originalContent: history.messages[message.id].content }
: {}),
...message
};
} }
} }
} }