removed dalle2 as the default dalle command

This commit is contained in:
phixxy 2024-01-27 20:08:24 -08:00
parent 84da82bccf
commit 254fbdd8ec

View file

@ -212,8 +212,7 @@ class ChatGPT(commands.Cog):
@commands.command( @commands.command(
description="Dalle 2", description="Dalle 2",
help="Generate an image with Dalle 2 Usage: !dalle2 (prompt)", help="Generate an image with Dalle 2 Usage: !dalle2 (prompt)",
brief="Generate Image", brief="Generate Image"
aliases = ['dalle']
) )
async def dalle2(self, ctx): async def dalle2(self, ctx):
if ctx.author.get_role(self.premium_role): if ctx.author.get_role(self.premium_role):
@ -234,7 +233,8 @@ class ChatGPT(commands.Cog):
@commands.command( @commands.command(
description="Dalle 3", description="Dalle 3",
help="Generate an image with Dalle 3 Usage: !dalle3 (prompt)", help="Generate an image with Dalle 3 Usage: !dalle3 (prompt)",
brief="Generate Image" brief="Generate Image",
aliases = ['dalle']
) )
async def dalle3(self, ctx): async def dalle3(self, ctx):
if ctx.author.get_role(self.premium_role): if ctx.author.get_role(self.premium_role):