Skip to content

Commit c4d8282

Browse files
authored
Update help.py
1 parent c0864ea commit c4d8282

File tree

1 file changed

+14
-15
lines changed

1 file changed

+14
-15
lines changed

cogs/help.py

+14-15
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ class Help(commands.Cog):
66
def __init__(self, bot: commands.Bot) -> None:
77
self.bot = bot
88

9-
@app_commands.command(name="help", description="Display list of commands")
9+
@app_commands.command(name="help", description="Get a list of commands")
1010
async def help(self, interaction: discord.Interaction) -> None:
11-
11+
1212
embed = discord.Embed(
1313
title="Vexel - Commands",
1414
color=discord.Color(0x871ef4),
@@ -17,31 +17,31 @@ async def help(self, interaction: discord.Interaction) -> None:
1717

1818
embed.add_field(
1919
name="/chat",
20-
value="Start chating with Vexel.",
20+
value="Start chatting with Vexel.",
2121
inline=False
2222
)
2323

2424
embed.add_field(
2525
name="/draw",
26-
value="Generate an image, text-to-image generation.",
26+
value="Create an image from text.",
2727
inline=False
2828
)
2929

3030
embed.add_field(
3131
name="/analyze",
32-
value="Recognize an image, get image description.",
32+
value="Get a description of an image.",
3333
inline=False
3434
)
35-
35+
3636
embed.add_field(
37-
name="/modify",
38-
value="Modify an image, make visual changes.",
37+
name="/remix",
38+
value="Make visual changes to an image.",
3939
inline=False
4040
)
41-
41+
4242
embed.add_field(
4343
name="/wipe",
44-
value="Wipe your chat history with Vexel.",
44+
value="Clear chat history with Vexel.",
4545
inline=False
4646
)
4747
embed.set_image(url="https://vexel.vercel.app/vexel_header.png")
@@ -69,12 +69,11 @@ async def info_embed(interaction: discord.Interaction):
6969
)
7070

7171
total_guilds = len(self.bot.guilds)
72-
embed.add_field(name="Total Servers", value=total_guilds)
73-
7472
ping_latency = self.bot.latency * 1000
75-
embed.add_field(name="Ping Latency", value=f"{ping_latency:.2f} ms")
7673

77-
embed.add_field(name="Vexel Created", value="<t:1715293531:R>")
74+
embed.description = (
75+
f"Vexel is an AI-powered Discord bot created by [Priyanshu](https://discord.com/users/666807222042361856) <t:1715293531:R>. Vexel is currently in {total_guilds} servers, with a performance latency of {ping_latency:.2f} ms."
76+
)
7877

7978
await interaction.response.send_message(embed=embed, ephemeral=True)
8079

@@ -85,4 +84,4 @@ async def info_embed(interaction: discord.Interaction):
8584
await interaction.response.send_message(embed=embed, view=view)
8685

8786
async def setup(bot: commands.Bot) -> None:
88-
await bot.add_cog(Help(bot))
87+
await bot.add_cog(Help(bot))

0 commit comments

Comments
 (0)