Skip to content

Commit

Permalink
conv_id instead of user_id in the error
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaGusev committed Oct 29, 2024
1 parent d65b48a commit d943b94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configs/localization.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"CLAUDE_HIGH_TEMPERATURE": "Claude не поддерживает температуру выше 1, задайте новую с помощью /settemperature",
"CONTENT_NOT_SUPPORTED_BY_MODEL": "Выбранная модель не может обработать ваше сообщение",
"CONTENT_NOT_SUPPORTED": "Такой тип сообщений (ещё) не поддерживается",
"ERROR": "Что-то пошло не так, ответ от Сайги не получен или не смог отобразиться. Попробуйте сделать /reset и пришлите @{admin_username} вот это число: {chat_id}",
"ERROR": "Что-то пошло не так, ответ от Сайги не получен или не смог отобразиться. Попробуйте сделать /reset и пришлите @{admin_username} вот эту строку: {conv_id}",
"NEW_TEMPERATURE": "Новая температура задана:\n\n{temperature}",
"NEW_TOP_P": "Новое top-p задано:\n\n{top_p}",
"NEW_FREQUENCY_PENALTY": "Новое freq penalty задано:\n\n{frequency_penalty}",
Expand Down
2 changes: 1 addition & 1 deletion src/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -1058,7 +1058,7 @@ async def generate(self, message: Message) -> None:

except Exception:
traceback.print_exc()
text = self.localization.ERROR.format(admin_username=self.config.admin_user_name, chat_id=chat_id)
text = self.localization.ERROR.format(admin_username=self.config.admin_user_name, conv_id=conv_id)
await placeholder.edit_text(text)

@check_creator
Expand Down

0 comments on commit d943b94

Please sign in to comment.