mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-09 00:10:10 +01:00
18 lines
394 B
JavaScript
18 lines
394 B
JavaScript
const { WorkspaceChats } = require("../../../models/workspaceChats");
|
|
|
|
async function resetMemory(workspace, _message, msgUUID) {
|
|
await WorkspaceChats.markHistoryInvalid(workspace.id);
|
|
return {
|
|
uuid: msgUUID,
|
|
type: "textResponse",
|
|
textResponse: "Workspace chat memory was reset!",
|
|
sources: [],
|
|
close: true,
|
|
error: false,
|
|
};
|
|
}
|
|
|
|
module.exports = {
|
|
resetMemory,
|
|
};
|