From 19a42e0c79e1cb4f6d0b71f7b54631bd06e9e14c Mon Sep 17 00:00:00 2001 From: Yury Nevalenny Date: Tue, 19 Nov 2024 19:32:23 +0200 Subject: [PATCH] no web search for now --- backend/app/telegram/telegram.go | 2 +- backend/app/telegram/user_status.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/app/telegram/telegram.go b/backend/app/telegram/telegram.go index 998baa4..de7e0fc 100644 --- a/backend/app/telegram/telegram.go +++ b/backend/app/telegram/telegram.go @@ -596,7 +596,7 @@ func handleEngineSwitchCallbackQuery(callbackQuery telego.CallbackQuery, topicSt } if callbackQuery.Data == string(models.Grok) { go redis.SaveModel(chatIDString, models.Grok) - notification := "Switched to Grok model, intelligent and fun with Web Search enabled!" + notification := "Switched to Grok model, intelligent and fun!" notification = lib.AddBotSuffixToGroupCommands(ctx, notification) _, err := BOT.SendMessage(tu.Message(tu.ID(chatID), notification).WithMessageThreadID(topicID)) if err != nil { diff --git a/backend/app/telegram/user_status.go b/backend/app/telegram/user_status.go index cfca59c..b7616d2 100644 --- a/backend/app/telegram/user_status.go +++ b/backend/app/telegram/user_status.go @@ -171,7 +171,7 @@ func GetModelsKeyboard(ctx context.Context) *telego.InlineKeyboardMarkup { InlineKeyboard: [][]telego.InlineKeyboardButton{ { { - Text: grokActive + "Grok + Web 🌍 💰💰🏃🏃🧠🧠🧠", + Text: grokActive + "Grok 💰💰🏃🏃🧠🧠🧠", CallbackData: string(models.Grok) + ":" + topicString, }, },