mirror of
https://github.com/Yidadaa/ChatGPT-Next-Web.git
synced 2025-08-10 01:21:47 +08:00
feat: add top p config
This commit is contained in:
@@ -214,6 +214,10 @@ const cn = {
|
||||
Title: "随机性 (temperature)",
|
||||
SubTitle: "值越大,回复越随机",
|
||||
},
|
||||
TopP: {
|
||||
Title: "核采样 (top_p)",
|
||||
SubTitle: "与随机性类似,但不要和随机性一起更改",
|
||||
},
|
||||
MaxTokens: {
|
||||
Title: "单次回复限制 (max_tokens)",
|
||||
SubTitle: "单次交互所用的最大 Token 数",
|
||||
|
@@ -215,6 +215,10 @@ const en: LocaleType = {
|
||||
Title: "Temperature",
|
||||
SubTitle: "A larger value makes the more random output",
|
||||
},
|
||||
TopP: {
|
||||
Title: "Top P",
|
||||
SubTitle: "Do not alter this value together with temperature",
|
||||
},
|
||||
MaxTokens: {
|
||||
Title: "Max Tokens",
|
||||
SubTitle: "Maximum length of input tokens and generated tokens",
|
||||
@@ -249,7 +253,7 @@ const en: LocaleType = {
|
||||
},
|
||||
Context: {
|
||||
Toast: (x: any) => `With ${x} contextual prompts`,
|
||||
Edit: "Contextual and Memory Prompts",
|
||||
Edit: "Current Chat Settings",
|
||||
Add: "Add a Prompt",
|
||||
Clear: "Context Cleared",
|
||||
Revert: "Revert",
|
||||
|
Reference in New Issue
Block a user