add lobotomize command

This commit is contained in:
2026-05-24 11:14:44 -04:00
parent 6cb34c7c74
commit 4a6d361997
2 changed files with 16 additions and 3 deletions
+9
View File
@@ -328,6 +328,15 @@ async def on_message(message: Message) -> None:
await bot.process_commands(message)
@bot.command(name="lobotomize")
async def lobotomize(ctx: CommandsContext[Bot]) -> None:
"""Clear all conversation history and memory for all bots."""
logger.info("Lobotomize command triggered by %s", ctx.author.name)
db = get_database()
db.clear_all_messages()
await ctx.send("All conversation history and memory has been cleared. 🧠✨")
@bot.command(name="voices")
async def voices(ctx: CommandsContext[Bot]) -> None:
"""List all available TTS voices organized by category."""