diff --git a/cogs/text_service_cog.py b/cogs/text_service_cog.py index 064ca03..0676f5c 100644 --- a/cogs/text_service_cog.py +++ b/cogs/text_service_cog.py @@ -593,6 +593,16 @@ class GPT3ComCon(discord.Cog, name="GPT3ComCon"): embed = discord.Embed( title="GPT3Bot Help", description="The current commands", color=0xC730C7 ) + embed.add_field( + name="/search", + value="AI-Assisted google search!", + inline=False, + ) + embed.add_field( + name="/index", + value="Indexing commands for document knowledge and querying", + inline=False, + ) embed.add_field( name="/gpt ask", value="Ask GPT3 something. Be clear, long, and concise in your prompt. Don't waste tokens.", @@ -612,23 +622,23 @@ class GPT3ComCon(discord.Cog, name="GPT3ComCon"): inline=False, ) embed.add_field( - name="/system settings", - value="Print the current settings of the model", + name="/dalle draw ", + value="Use DALL-E2 to draw an image based on a text prompt", inline=False, ) embed.add_field( - name="/system settings ", - value="Change the parameter of the model named by to new value ", + name="/dalle optimize ", + value="Optimize an image prompt for use with DALL-E2, Midjourney, SD, etc.", inline=False, ) embed.add_field( - name="/dalle draw ", - value="Use DALL-E2 to draw an image based on a text prompt", + name="/system settings", + value="Print the current settings of the model", inline=False, ) embed.add_field( - name="/dalle optimize ", - value="Optimize an image prompt for use with DALL-E2, Midjourney, SD, etc.", + name="/system settings ", + value="Change the parameter of the model named by to new value ", inline=False, ) embed.add_field( @@ -636,9 +646,14 @@ class GPT3ComCon(discord.Cog, name="GPT3ComCon"): value="The automatic moderations service", inline=False, ) + embed.add_field( + name="/translate", + value="Translate from one language to another", + inline=False, + ) embed.add_field(name="/help", value="See this help text", inline=False) - await ctx.respond(embed=embed, ephemeral=True) + await ctx.respond(embed=embed, ephemeral=False) async def set_usage_command( self, ctx: discord.ApplicationContext, usage_amount: float