feat: Add localization support for Copilot resume chat and hide current chat model settings

This commit is contained in:
n4ze3m
2024-05-24 21:19:53 +05:30
parent 961f5180c6
commit 23435318c5
11 changed files with 172 additions and 6 deletions

View File

@@ -50,5 +50,39 @@
"noHistory": "无聊天记录",
"chatWithCurrentPage": "与当前页面聊天",
"beta": "Beta",
"tts": "朗读"
"tts": "朗读",
"currentChatModelSettings": "当前聊天模型设置",
"modelSettings": {
"label": "模型设置",
"description": "全局设置所有聊天的模型选项",
"form": {
"keepAlive": {
"label": "保留时间",
"help": "控制请求后模型在内存中保持的时间默认5分钟",
"placeholder": "输入保留时间例如5分、10分、1小时"
},
"temperature": {
"label": "温度",
"placeholder": "输入温度值例如0.7、1.0"
},
"numCtx": {
"label": "上下文数量",
"placeholder": "输入上下文数量默认2048"
},
"seed": {
"label": "随机种子",
"placeholder": "输入随机种子值例如1234",
"help": "模型输出的可重复性"
},
"topK": {
"label": "Top K",
"placeholder": "输入Top K值例如40、100"
},
"topP": {
"label": "Top P",
"placeholder": "输入Top P值例如0.9、0.95"
}
},
"advanced": "更多模型设置"
}
}