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; }