Add memory clear command

This commit is contained in:
2025-09-11 21:54:24 +08:00
parent 68a45a9657
commit 8ac0197fc4

View File

@@ -49,4 +49,10 @@ object PluginCommands : CompositeCommand(
LargeLanguageModels.reload()
sendMessage("OK")
}
@SubCommand
suspend fun CommandSender.clearMemory() {
PluginData.contactMemory.clear()
sendMessage("OK")
}
}