diff --git a/config.py b/config.py index bbd807b4..c54aee95 100644 --- a/config.py +++ b/config.py @@ -107,6 +107,7 @@ def update_info_message(user_id = None): f"**API_URL:** `{API_URL}`\n\n" f"**API:** `{replace_with_asterisk(API)}`\n\n" f"**WEB_HOOK:** `{WEB_HOOK}`\n\n" + f"**tokens usage:** `{get_robot(user_id)[0].tokens_usage[str(user_id)]}`\n\n" ) ChatGPTbot, SummaryBot, translate_bot, claudeBot, claude3Bot, groqBot, gemini_Bot = None, None, None, None, None, None, None diff --git a/requirements.txt b/requirements.txt index 08e9a6ec..86a69d6b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ pytz python-dotenv md2tgmd==0.1.9 -ModelMerge==0.4.7 +ModelMerge==0.4.11 fake_useragent oauth2client==3.0.0 python-telegram-bot[webhooks,rate-limiter]==21.0.1 \ No newline at end of file diff --git a/utils/i18n.py b/utils/i18n.py index 973c3750..b06bd57b 100644 --- a/utils/i18n.py +++ b/utils/i18n.py @@ -51,4 +51,8 @@ "zh": "DALL·E 3", "en": "DALL·E 3", }, + "CODE": { + "zh": "代码执行", + "en": "Code execution", + }, } \ No newline at end of file