From a7efc1a77819a2c0151096740d841c71a97ced50 Mon Sep 17 00:00:00 2001 From: Danil Nikolaev Date: Thu, 22 Jan 2026 12:34:03 +0300 Subject: [PATCH] remove logging --- src/commands/ollama-chat.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/commands/ollama-chat.ts b/src/commands/ollama-chat.ts index 57e195e..c9a742e 100644 --- a/src/commands/ollama-chat.ts +++ b/src/commands/ollama-chat.ts @@ -118,18 +118,11 @@ export class OllamaChat extends ChatCommand { "Markdown", isOver ? {inline_keyboard: []} : cancelMarkup ).catch(logError); - console.log("Thinking:\n"); } isThinking = true; } - if (chunk.message.thinking) { - console.log(chunk.message.thinking); - } else { - console.log(chunk.message.content); - } - if (!isThinking) { currentText += content; }