@@ -6,9 +6,9 @@ class Help(commands.Cog):
6
6
def __init__ (self , bot : commands .Bot ) -> None :
7
7
self .bot = bot
8
8
9
- @app_commands .command (name = "help" , description = "Display list of commands" )
9
+ @app_commands .command (name = "help" , description = "Get a list of commands" )
10
10
async def help (self , interaction : discord .Interaction ) -> None :
11
-
11
+
12
12
embed = discord .Embed (
13
13
title = "Vexel - Commands" ,
14
14
color = discord .Color (0x871ef4 ),
@@ -17,31 +17,31 @@ async def help(self, interaction: discord.Interaction) -> None:
17
17
18
18
embed .add_field (
19
19
name = "/chat" ,
20
- value = "Start chating with Vexel." ,
20
+ value = "Start chatting with Vexel." ,
21
21
inline = False
22
22
)
23
23
24
24
embed .add_field (
25
25
name = "/draw" ,
26
- value = "Generate an image, text-to-image generation ." ,
26
+ value = "Create an image from text ." ,
27
27
inline = False
28
28
)
29
29
30
30
embed .add_field (
31
31
name = "/analyze" ,
32
- value = "Recognize an image, get image description ." ,
32
+ value = "Get a description of an image ." ,
33
33
inline = False
34
34
)
35
-
35
+
36
36
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 ." ,
39
39
inline = False
40
40
)
41
-
41
+
42
42
embed .add_field (
43
43
name = "/wipe" ,
44
- value = "Wipe your chat history with Vexel." ,
44
+ value = "Clear chat history with Vexel." ,
45
45
inline = False
46
46
)
47
47
embed .set_image (url = "https://vexel.vercel.app/vexel_header.png" )
@@ -69,12 +69,11 @@ async def info_embed(interaction: discord.Interaction):
69
69
)
70
70
71
71
total_guilds = len (self .bot .guilds )
72
- embed .add_field (name = "Total Servers" , value = total_guilds )
73
-
74
72
ping_latency = self .bot .latency * 1000
75
- embed .add_field (name = "Ping Latency" , value = f"{ ping_latency :.2f} ms" )
76
73
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
+ )
78
77
79
78
await interaction .response .send_message (embed = embed , ephemeral = True )
80
79
@@ -85,4 +84,4 @@ async def info_embed(interaction: discord.Interaction):
85
84
await interaction .response .send_message (embed = embed , view = view )
86
85
87
86
async def setup (bot : commands .Bot ) -> None :
88
- await bot .add_cog (Help (bot ))
87
+ await bot .add_cog (Help (bot ))
0 commit comments