From 0e79bbb87d361301c3112e9d9062291f8e84a72c Mon Sep 17 00:00:00 2001 From: Danil Nikolaev Date: Sun, 18 Jan 2026 09:09:34 +0300 Subject: [PATCH] revert model options --- src/commands/ollama-chat.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/commands/ollama-chat.ts b/src/commands/ollama-chat.ts index 9df0595..7dabc51 100644 --- a/src/commands/ollama-chat.ts +++ b/src/commands/ollama-chat.ts @@ -94,12 +94,7 @@ export class OllamaChat extends ChatCommand { stream: true, think: false, keep_alive: 300, - messages: chatMessages, - options: { - temperature: 0.1, - top_p: 0.8, - repeat_penalty: 1.15 - } + messages: chatMessages }); ollamaRequests.push({uuid: uuid, stream: stream, done: false, fromId: msg.from.id, chatId: msg.chat.id});