mirror of
https://github.com/NovaOSS/nova-betterchat.git
synced 2024-11-25 23:23:59 +01:00
b0bfe56fd3
Fixes #97, Fixes #89, Fixes #35
29 lines
1.7 KiB
JSON
29 lines
1.7 KiB
JSON
{
|
|
"configuration": "Configuration",
|
|
"model": "Model",
|
|
"token": {
|
|
"label": "Max Token",
|
|
"description": "The maximum number of tokens to generate in the chat completion. The total length of input tokens and generated tokens is limited by the model's context length."
|
|
},
|
|
"default": "Default",
|
|
"temperature": {
|
|
"label": "Temperature",
|
|
"description": "What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or top p but not both. (Default: 1)"
|
|
},
|
|
"presencePenalty": {
|
|
"label": "Presence Penalty",
|
|
"description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model's likelihood to talk about new topics. (Default: 0)"
|
|
},
|
|
"topP": {
|
|
"label": "Top-p",
|
|
"description": "Number between 0 and 1. An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. We generally recommend altering this or temperature but not both. (Default: 1)"
|
|
},
|
|
"frequencyPenalty": {
|
|
"label": "Frequency Penalty",
|
|
"description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim. (Default: 0)"
|
|
},
|
|
"defaultChatConfig": "Default Chat Config",
|
|
"defaultSystemMessage": "Default System Message",
|
|
"resetToDefault": "Reset To Default"
|
|
}
|