diff --git a/app/plugins/ai/openai.py b/app/plugins/ai/openai.py index 7cff31a..68092c2 100644 --- a/app/plugins/ai/openai.py +++ b/app/plugins/ai/openai.py @@ -1,4 +1,4 @@ -from base64 import b64decode +from base64 import b64decode from io import BytesIO from os import environ @@ -94,7 +94,7 @@ async def chat_gpt(bot: BOT, message: Message): response = chat_completion.choices[0].message.content await message.reply( - text=f"**>\n{prompt}\n<**\n**GPT**:**>\n{response}\n<**", + text=f"**>\n••>{prompt}<**\n**>{response}\n<**", parse_mode=ParseMode.MARKDOWN, )