From d65f61db829dd7362878b11c5eaeb6c6cc6d1452 Mon Sep 17 00:00:00 2001 From: Alexey Skobkin Date: Mon, 6 May 2024 00:28:41 +0000 Subject: [PATCH] Rolling back summarizing to Mistral --- bot/bot.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/bot.go b/bot/bot.go index 828819b..6810eee 100644 --- a/bot/bot.go +++ b/bot/bot.go @@ -259,7 +259,7 @@ func (b *Bot) summarizeHandler(bot *telego.Bot, update telego.Update) { slog.Error("Cannot retrieve an article using extractor", "error", err) } - llmReply, err := b.llm.Summarize(article.Text, llm.ModelLlama3Uncensored) + llmReply, err := b.llm.Summarize(article.Text, llm.ModelMistralUncensored) if err != nil { slog.Error("Cannot get reply from LLM connector")