-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Feature: Add i18n support, set the default language to English.
🤖 Model: Set the default context length of gpt-4-turbo to 128k, and set the search token length limit to 32k. 💻 Code: Upgrade ModelMerge version to 0.3.2
- Loading branch information
Showing
5 changed files
with
96 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
strings = { | ||
"welcome": { | ||
"zh": "欢迎", | ||
"en": "Welcome", | ||
}, | ||
"button_change_model": { | ||
"zh": "切换模型", | ||
"en": "Change model", | ||
}, | ||
"button_search": { | ||
"zh": "搜索", | ||
"en": "Search", | ||
}, | ||
"button_url": { | ||
"zh": "网址总结", | ||
"en": "URL summary", | ||
}, | ||
"button_history": { | ||
"zh": "历史记录", | ||
"en": "Chat history", | ||
}, | ||
"button_current_time": { | ||
"zh": "当前时间", | ||
"en": "Current time", | ||
}, | ||
"button_version": { | ||
"zh": "版本信息", | ||
"en": "Version info", | ||
}, | ||
"button_back": { | ||
"zh": "⬅️ 返回", | ||
"en": "⬅️ Back", | ||
}, | ||
"button_language": { | ||
"zh": "🇨🇳 中文", | ||
"en": "🇺🇸 English", | ||
}, | ||
"message_think": { | ||
"zh": "`思考中💭`", | ||
"en": "`thinking💭`", | ||
}, | ||
"message_banner": { | ||
"zh": "👇 下面可以随时更改默认模型:", | ||
"en": "👇 Change model below:", | ||
}, | ||
} |