From 70629d64959bd2e6967014c4868bcc0ff577abae Mon Sep 17 00:00:00 2001 From: thedragonsinn <98635854+thedragonsinn@users.noreply.github.com> Date: Sun, 9 Mar 2025 19:32:03 +0530 Subject: [PATCH] `aic`: fix quotes --- app/plugins/ai/text_query.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/plugins/ai/text_query.py b/app/plugins/ai/text_query.py index 931722b..0f545bc 100644 --- a/app/plugins/ai/text_query.py +++ b/app/plugins/ai/text_query.py @@ -138,7 +138,7 @@ async def do_convo(chat: AsyncChat, message: Message): while True: ai_response = await chat.send_message(prompt) ai_response_text = get_response_text(ai_response, quoted=True) - text = f"**GEMINI AI**:{ai_response_text}" + text = f"**GENAI:**\n{ai_response_text}" _, prompt_message = await convo_obj.send_message( text=text, reply_to_id=reply_to_id,