diff --git a/misskaty/plugins/chatbot_ai.py b/misskaty/plugins/chatbot_ai.py
index 3441556e..ff36ea26 100644
--- a/misskaty/plugins/chatbot_ai.py
+++ b/misskaty/plugins/chatbot_ai.py
@@ -47,7 +47,7 @@ async def get_openai_stream_response(is_stream, key, base_url, model, messages,
num = 0
try:
if not is_stream:
- await bmsg.edit_msg(f"{response.choices[0].message.content}\n\nPowered by: Gemini 1.5 Flash")
+ await bmsg.edit_msg(f"{response.choices[0].message.content}\nPowered by: Gemini 1.5 Flash")
answer += response.choices[0].message.content
else:
async for chunk in response: