style: help menu

This commit is contained in:
jialin
2024-07-10 15:41:05 +08:00
parent f103da4178
commit 0ed7568859
25 changed files with 226 additions and 678 deletions
+5 -1
View File
@@ -187,5 +187,9 @@ export default {
'common.form.password': 'Password',
'common.form.username': 'Username',
'common.login.rember': 'Remember me',
'settings.company': 'SEAL'
'settings.company': 'SEAL',
'common.button.help': 'Help',
'common.button.feedback': 'Feedback',
'common.button.docs': 'Documentation',
'common.button.version': 'Version'
};
+11 -1
View File
@@ -14,5 +14,15 @@ export default {
'playground.prompt': 'Prompt',
'playground.tokenusage': 'Token Usage',
'models.openinplayground': 'Open in Playground',
'playground.tokenoutput': 'Output'
'playground.tokenoutput': 'Output',
'playground.params.temperature.tips':
'Controls randomness: Lowering results in less random completions. As the temperature approaches zero, the model will become deterministic and repetitive.',
'playground.params.maxtokens.tips':
"The maximum number of tokens to generated. The total length of input tokens and generated tokens is limited by the model's context length.",
'playground.params.topp.tips':
'Controls diversity via nucleus sampling: 0.5 means half of all likelihood-weighted options are considered.',
'playground.params.seed.tips':
'Specify a random seed to ensure deterministic sampling. Using the same seed and parameters will produce the same results for repeated requests.',
'playground.params.stop.tips':
'A stop sequence is a predefined or user-specified text string that signals the AI to stop generating further tokens when these sequences appear.'
};
+5 -1
View File
@@ -180,5 +180,9 @@ export default {
'common.form.password': '密码',
'common.form.username': '用户名',
'common.login.rember': '记住我',
'settings.company': '数澈软件'
'settings.company': '数澈软件',
'common.button.help': '帮助',
'common.button.feedback': '反馈',
'common.button.docs': '文档',
'common.button.version': '版本'
};
+11 -1
View File
@@ -14,5 +14,15 @@ export default {
'playground.prompt': '提示',
'playground.tokenusage': 'Token 使用量',
'models.openinplayground': '打开试验场',
'playground.tokenoutput': '输出'
'playground.tokenoutput': '输出',
'playground.params.temperature.tips':
'控制随机性:降低温度会导致更少的随机完成。当温度接近零时,模型将变得确定性和重复性。',
'playground.params.maxtokens.tips':
'生成的最大 token 数。输入标记和生成的标记的总长度受模型上下文长度的限制。',
'playground.params.topp.tips':
'通过核采样控制多样性:0.5 表示考虑所有基于概率权重选项的一半。',
'playground.params.seed.tips':
'指定随机种子以确保确定性采样。使用相同的种子和参数对于重复请求将产生相同的结果。',
'playground.params.stop.tips':
'停止序列是一个预定义或用户指定的文本字符串,当这些序列出现时,它会提示 AI 停止生成后续的标记。'
};