From 254fbdd8ec23663487f9fd4fe823524ffaeba6ae Mon Sep 17 00:00:00 2001 From: phixxy Date: Sat, 27 Jan 2024 20:08:24 -0800 Subject: [PATCH] removed dalle2 as the default dalle command --- extensions/chatgpt.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/extensions/chatgpt.py b/extensions/chatgpt.py index 9e0ff72..6033a10 100644 --- a/extensions/chatgpt.py +++ b/extensions/chatgpt.py @@ -212,8 +212,7 @@ class ChatGPT(commands.Cog): @commands.command( description="Dalle 2", help="Generate an image with Dalle 2 Usage: !dalle2 (prompt)", - brief="Generate Image", - aliases = ['dalle'] + brief="Generate Image" ) async def dalle2(self, ctx): if ctx.author.get_role(self.premium_role): @@ -234,7 +233,8 @@ class ChatGPT(commands.Cog): @commands.command( description="Dalle 3", help="Generate an image with Dalle 3 Usage: !dalle3 (prompt)", - brief="Generate Image" + brief="Generate Image", + aliases = ['dalle'] ) async def dalle3(self, ctx): if ctx.author.get_role(self.premium_role):