add abstract methods

This commit is contained in:
Henry
2023-12-26 16:13:14 +00:00
parent 5a76076ce4
commit b6d08268d4
4 changed files with 18 additions and 2 deletions
@@ -221,6 +221,10 @@ class BufferMemoryExtended extends FlowiseMemory implements MemoryMethods {
await this.collection.deleteOne({ sessionId: id })
await this.clear()
}
async resumeMessages(): Promise<void> {
return
}
}
module.exports = { nodeClass: MongoDB_Memory }