From a37d53d72deb58c9876984e01616fda48ba5f51c Mon Sep 17 00:00:00 2001 From: viste Date: Wed, 18 Sep 2024 02:29:01 +0300 Subject: [PATCH] just replay Signed-off-by: viste --- core/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core.py b/core/core.py index 2248fa0..b9fadbd 100644 --- a/core/core.py +++ b/core/core.py @@ -78,7 +78,7 @@ async def comment_on_photo(message: types.Message): comment = await openai.generate_comment_from_image(image_url) - await message.reply(f"Комментарий на фото: {comment}") + await message.reply(comment) @router.message(F.chat.type.in_({'group', 'supergroup'}))