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
+7 -3
View File
@@ -138,13 +138,17 @@ class ChatDatabase:
def _calculate_similarity(self, vec1: np.ndarray, vec2: np.ndarray) -> float: def _calculate_similarity(self, vec1: np.ndarray, vec2: np.ndarray) -> float:
"""Calculate cosine similarity between two vectors.""" """Calculate cosine similarity between two vectors."""
vec1 = vec1.flatten()
vec2 = vec2.flatten()
logger.debug( logger.debug(
"Calculating cosine similarity between vectors of dimension %d", "Calculating cosine similarity between vectors of dimension %d",
len(vec1), len(vec1),
) )
result = float( norm1 = np.linalg.norm(vec1)
np.dot(vec1, vec2) / (np.linalg.norm(vec1) * np.linalg.norm(vec2)), norm2 = np.linalg.norm(vec2)
) if norm1 == 0 or norm2 == 0:
return 0.0
result = float(np.dot(vec1, vec2) / (norm1 * norm2))
logger.debug("Similarity calculated: %.4f", result) logger.debug("Similarity calculated: %.4f", result)
return result return result
+9
View File
@@ -328,6 +328,15 @@ async def on_message(message: Message) -> None:
await bot.process_commands(message) 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") @bot.command(name="voices")
async def voices(ctx: CommandsContext[Bot]) -> None: async def voices(ctx: CommandsContext[Bot]) -> None:
"""List all available TTS voices organized by category.""" """List all available TTS voices organized by category."""