From 269ddb92187916773cf0410d35d41cbe8ba661f3 Mon Sep 17 00:00:00 2001 From: nex Date: Sat, 11 Nov 2023 19:31:25 +0000 Subject: [PATCH] Allow non-me to use the command and default to orca-mini --- cogs/other.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cogs/other.py b/cogs/other.py index 92294bd..1873626 100644 --- a/cogs/other.py +++ b/cogs/other.py @@ -1849,7 +1849,8 @@ class OtherCog(commands.Cog): if not await self.bot.is_owner(ctx.author): if not model.startswith("orca-mini"): - return await ctx.reply(":x: You can only use `orca-mini` models.") + await ctx.reply(":warning: You can only use `orca-mini` models.", delete_after=30) + model = "orca-mini:latest" if query.startswith("server:"): host, query = query.split(" ", 1)