mirror of
https://github.com/Yidadaa/ChatGPT-Next-Web.git
synced 2025-08-08 16:15:50 +08:00
remove error messages in toBeSummarizedMsgs
This commit is contained in:
@@ -423,7 +423,10 @@ export const useChatStore = create<ChatStore>()(
|
||||
let toBeSummarizedMsgs = session.messages.slice(
|
||||
session.lastSummarizeIndex,
|
||||
);
|
||||
|
||||
|
||||
// remove error messages if any
|
||||
toBeSummarizedMsgs = toBeSummarizedMsgs.filter((msg) => !msg.isError);
|
||||
|
||||
const historyMsgLength = countMessages(toBeSummarizedMsgs);
|
||||
|
||||
if (historyMsgLength > modelConfig?.max_tokens ?? 4000) {
|
||||
|
Reference in New Issue
Block a user