aboutsummaryrefslogtreecommitdiff
path: root/code/cogs/autoplay.py
diff options
context:
space:
mode:
Diffstat (limited to 'code/cogs/autoplay.py')
-rw-r--r--code/cogs/autoplay.py30
1 files changed, 13 insertions, 17 deletions
diff --git a/code/cogs/autoplay.py b/code/cogs/autoplay.py
index 5c2ec29..6c815b9 100644
--- a/code/cogs/autoplay.py
+++ b/code/cogs/autoplay.py
@@ -19,16 +19,15 @@ class Autoplay(commands.Cog):
async def autoplay(
self, interaction: discord.Interaction, toggle: Literal["ON", "OFF"]
):
- "Keep the music playing forever with music suggestions from OpenAI"
+ "Keep music playing 24/7 with AI-generated song recommendations"
if toggle == "OFF":
self.bot.autoplay.remove(interaction.guild.id)
embed = create_embed(
title="Autoplay Off",
description=(
- "Autoplay has been turned off. I will no longer"
- " automatically add new songs to the queue based on AI"
- " recommendations."
+ "Autoplay has been turned off. Song recommendations will"
+ " no longer be added to the queue."
),
)
return await interaction.response.send_message(embed=embed)
@@ -40,8 +39,8 @@ class Autoplay(commands.Cog):
title="Autoplay Already Enabled",
description=(
"Autoplay is already enabled. If you would like to turn it"
- " off, choose the `OFF` option in the"
- " </autoplay:1228216490386391052> command."
+ " off, run </autoplay:1228216490386391052> and choose the"
+ " `OFF` option."
),
)
return await interaction.response.send_message(
@@ -54,9 +53,8 @@ class Autoplay(commands.Cog):
embed = create_embed(
title="Not Enough Context",
description=(
- "You must have at least 5 songs in the queue so that I can"
- " get a good understanding of what music I should continue"
- " to play. Add some more music to the queue, then try"
+ "Autoplay requires at least 5 songs in the queue in order"
+ " to generate recommendations. Please add more and try"
" again."
),
)
@@ -84,9 +82,9 @@ class Autoplay(commands.Cog):
embed = create_embed(
title=":infinity: Autoplay Enabled :infinity:",
description=(
- "I have added a few similar songs to the queue and will"
- " continue to do so once the queue gets low again. Now"
- " just sit back and enjoy the music!\n\nEnabled by:"
+ "Recommendations have been generated and added to the"
+ " queue. Autoplay will automatically search for more"
+ " songs whenever the queue gets low.\n\nEnabled by:"
f" {interaction.user.mention}"
),
)
@@ -96,11 +94,9 @@ class Autoplay(commands.Cog):
embed = create_embed(
title="Autoplay Error",
description=(
- "Autoplay is an experimental feature, meaning sometimes it"
- " doesn't work as expected. I had an error when attempting"
- " to get similar songs for you, please try running the"
- " command again. If the issue persists, fill out a bug"
- " report with the </bug:1224840889906499626> command."
+ "Unable to get AI recommendations at this time. Please try"
+ " again. If issues continue, please fill out a bug report"
+ " with </bug:1224840889906499626>."
),
)
await interaction.edit_original_response(embed=embed)