anything-llm/server/utils/chats/commands/reset.js
timothycarambat 27c58541bd inital commit
2023-06-03 19:28:07 -07:00

17 lines
391 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
}