From 725bff324c192e59d4cbb07feac2e970064a1526 Mon Sep 17 00:00:00 2001 From: nex Date: Sat, 11 Nov 2023 19:34:58 +0000 Subject: [PATCH] Lowercase --- cogs/other.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cogs/other.py b/cogs/other.py index 363ec2c..ad16430 100644 --- a/cogs/other.py +++ b/cogs/other.py @@ -1847,6 +1847,8 @@ class OtherCog(commands.Cog): else: model = "orca-mini" + model = model.casefold() + if not await self.bot.is_owner(ctx.author): if not model.startswith("orca-mini"): await ctx.reply(":warning: You can only use `orca-mini` models.", delete_after=30)