Skip to content

Commit 2af3130

Browse files
committed
chore: error message
1 parent 9a338de commit 2af3130

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ async def draw(interaction: discord.Interaction, *, prompt: str, model: app_comm
166166

167167
except Exception as e:
168168
await interaction.followup.send(
169-
f'> **Something Went Wrong: Please try again later.\n\nError Message:{e}**')
169+
f'> Something Went Wrong, try again later.\n\nError Message:{e}')
170170
logger.info(f"\x1b[31m{username}\x1b[0m :{e}")
171171

172172
@discordClient.tree.command(name="switchpersona", description="Switch between optional chatGPT jailbreaks")
@@ -197,7 +197,7 @@ async def switchpersona(interaction: discord.Interaction, persona: app_commands.
197197
f"> **INFO: Switched to `{persona}` persona**")
198198
except Exception as e:
199199
await interaction.followup.send(
200-
"> **ERROR: Something went wrong, please try again later! **")
200+
"> ERROR: Something went wrong, try again later! ")
201201
logger.exception(f"Error while switching persona: {e}")
202202
else:
203203
await interaction.followup.send(

0 commit comments

Comments
 (0)