From f4289b86b4cbdf1f5a371321c32cedd1f381eb91 Mon Sep 17 00:00:00 2001 From: Danil Nikolaev Date: Mon, 12 Jan 2026 20:00:35 +0300 Subject: [PATCH] info about image size --- src/commands/ollama-chat.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/ollama-chat.ts b/src/commands/ollama-chat.ts index 7d411d6..d2a424c 100644 --- a/src/commands/ollama-chat.ts +++ b/src/commands/ollama-chat.ts @@ -75,7 +75,7 @@ export class OllamaChat extends ChatCommand { try { waitMessage = await bot.sendMessage({ chat_id: chatId, - text: Environment.waitText + (maxSize !== null ? `\nImage ${maxSize.width}x${maxSize.height}px` : ""), + text: Environment.waitText + (maxSize !== null ? `\n🤓 Image ${maxSize.width}x${maxSize.height}px` : ""), reply_parameters: { chat_id: chatId, message_id: msg.message_id @@ -135,7 +135,7 @@ export class OllamaChat extends ChatCommand { waitMessage.text = currentText; await MessageStore.put(waitMessage); - await replyToMessage(waitMessage, `⏱️ ${diff}s` + (maxSize !== null ? `\nImage ${maxSize.width}x${maxSize.height}px` : "")); + await replyToMessage(waitMessage, `⏱️ ${diff}s` + (maxSize !== null ? `\n🤓 Image ${maxSize.width}x${maxSize.height}px` : "")); break; } }