From 37f70f35dd0567e3c00eb74a798bdc8e15655f91 Mon Sep 17 00:00:00 2001 From: Kaveen Kumarasinghe Date: Sat, 14 Jan 2023 04:12:03 -0500 Subject: [PATCH] add space --- cogs/gpt_3_commands_and_converser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogs/gpt_3_commands_and_converser.py b/cogs/gpt_3_commands_and_converser.py index 3666f1c..7469716 100644 --- a/cogs/gpt_3_commands_and_converser.py +++ b/cogs/gpt_3_commands_and_converser.py @@ -1082,10 +1082,10 @@ class GPT3ComCon(discord.Cog, name="GPT3ComCon"): elif from_edit_command: if codex: response_text = response_text.strip() - response_text = f"***Prompt:{prompt}***\n***Instruction:{instruction}***\n\n```\n{response_text}\n```" + response_text = f"***Prompt: {prompt}***\n***Instruction: {instruction}***\n\n```\n{response_text}\n```" else: response_text = response_text.strip() - response_text = f"***Prompt:{prompt}***\n***Instruction:{instruction}***\n\n{response_text}\n" + response_text = f"***Prompt: {prompt}***\n***Instruction: {instruction}***\n\n{response_text}\n" # If gpt3 tries writing a user mention try to replace it with their name response_text = await self.mention_to_username(ctx, response_text)