You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
const { WorkspaceChats } = require("../../../models/workspaceChats");
async function resetMemory( workspace, _message, msgUUID, user = null, thread = null) { // If thread is present we are wanting to reset this specific thread. Not the whole workspace.
thread ? await WorkspaceChats.markThreadHistoryInvalid( workspace.id, user, thread.id ) : await WorkspaceChats.markHistoryInvalid(workspace.id, user);
return { uuid: msgUUID, type: "textResponse", textResponse: "Workspace chat memory was reset!", sources: [], close: true, error: false, action: "reset_chat", };}
module.exports = { resetMemory,};
|