2023-04-22 17:27:15 +00:00
|
|
|
import { ALL_MODELS, ModalConfigValidator, ModelConfig } from "../store";
|
|
|
|
|
|
|
|
import Locale from "../locales";
|
|
|
|
import { InputRange } from "./input-range";
|
2023-05-10 07:14:49 +00:00
|
|
|
import { List, ListItem, Select } from "./ui-lib";
|
2023-04-22 17:27:15 +00:00
|
|
|
|
|
|
|
export function ModelConfigList(props: {
|
|
|
|
modelConfig: ModelConfig;
|
|
|
|
updateConfig: (updater: (config: ModelConfig) => void) => void;
|
|
|
|
}) {
|
|
|
|
return (
|
2023-04-22 17:37:47 +00:00
|
|
|
<>
|
2023-04-22 17:27:15 +00:00
|
|
|
<ListItem title={Locale.Settings.Model}>
|
2023-05-10 07:14:49 +00:00
|
|
|
<Select
|
2023-04-22 17:27:15 +00:00
|
|
|
value={props.modelConfig.model}
|
|
|
|
onChange={(e) => {
|
|
|
|
props.updateConfig(
|
|
|
|
(config) =>
|
|
|
|
(config.model = ModalConfigValidator.model(
|
|
|
|
e.currentTarget.value,
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{ALL_MODELS.map((v) => (
|
|
|
|
<option value={v.name} key={v.name} disabled={!v.available}>
|
|
|
|
{v.name}
|
|
|
|
</option>
|
|
|
|
))}
|
2023-05-10 07:14:49 +00:00
|
|
|
</Select>
|
2023-04-22 17:27:15 +00:00
|
|
|
</ListItem>
|
|
|
|
<ListItem
|
|
|
|
title={Locale.Settings.Temperature.Title}
|
|
|
|
subTitle={Locale.Settings.Temperature.SubTitle}
|
|
|
|
>
|
|
|
|
<InputRange
|
|
|
|
value={props.modelConfig.temperature?.toFixed(1)}
|
|
|
|
min="0"
|
2023-04-23 13:54:18 +00:00
|
|
|
max="1" // lets limit it to 0-1
|
2023-04-22 17:27:15 +00:00
|
|
|
step="0.1"
|
|
|
|
onChange={(e) => {
|
|
|
|
props.updateConfig(
|
|
|
|
(config) =>
|
|
|
|
(config.temperature = ModalConfigValidator.temperature(
|
|
|
|
e.currentTarget.valueAsNumber,
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
}}
|
|
|
|
></InputRange>
|
|
|
|
</ListItem>
|
|
|
|
<ListItem
|
|
|
|
title={Locale.Settings.MaxTokens.Title}
|
|
|
|
subTitle={Locale.Settings.MaxTokens.SubTitle}
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
type="number"
|
|
|
|
min={100}
|
|
|
|
max={32000}
|
|
|
|
value={props.modelConfig.max_tokens}
|
|
|
|
onChange={(e) =>
|
|
|
|
props.updateConfig(
|
|
|
|
(config) =>
|
|
|
|
(config.max_tokens = ModalConfigValidator.max_tokens(
|
|
|
|
e.currentTarget.valueAsNumber,
|
|
|
|
)),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
></input>
|
|
|
|
</ListItem>
|
|
|
|
<ListItem
|
2023-05-16 07:40:43 +00:00
|
|
|
title={Locale.Settings.PresencePenalty.Title}
|
|
|
|
subTitle={Locale.Settings.PresencePenalty.SubTitle}
|
2023-04-22 17:27:15 +00:00
|
|
|
>
|
|
|
|
<InputRange
|
|
|
|
value={props.modelConfig.presence_penalty?.toFixed(1)}
|
|
|
|
min="-2"
|
|
|
|
max="2"
|
|
|
|
step="0.1"
|
|
|
|
onChange={(e) => {
|
|
|
|
props.updateConfig(
|
|
|
|
(config) =>
|
|
|
|
(config.presence_penalty =
|
|
|
|
ModalConfigValidator.presence_penalty(
|
|
|
|
e.currentTarget.valueAsNumber,
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
}}
|
|
|
|
></InputRange>
|
|
|
|
</ListItem>
|
|
|
|
|
|
|
|
<ListItem
|
|
|
|
title={Locale.Settings.HistoryCount.Title}
|
|
|
|
subTitle={Locale.Settings.HistoryCount.SubTitle}
|
|
|
|
>
|
|
|
|
<InputRange
|
|
|
|
title={props.modelConfig.historyMessageCount.toString()}
|
|
|
|
value={props.modelConfig.historyMessageCount}
|
|
|
|
min="0"
|
2023-04-24 16:49:27 +00:00
|
|
|
max="32"
|
2023-04-22 17:27:15 +00:00
|
|
|
step="1"
|
|
|
|
onChange={(e) =>
|
|
|
|
props.updateConfig(
|
|
|
|
(config) => (config.historyMessageCount = e.target.valueAsNumber),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
></InputRange>
|
|
|
|
</ListItem>
|
|
|
|
|
|
|
|
<ListItem
|
|
|
|
title={Locale.Settings.CompressThreshold.Title}
|
|
|
|
subTitle={Locale.Settings.CompressThreshold.SubTitle}
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
type="number"
|
|
|
|
min={500}
|
|
|
|
max={4000}
|
|
|
|
value={props.modelConfig.compressMessageLengthThreshold}
|
|
|
|
onChange={(e) =>
|
|
|
|
props.updateConfig(
|
|
|
|
(config) =>
|
|
|
|
(config.compressMessageLengthThreshold =
|
|
|
|
e.currentTarget.valueAsNumber),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
></input>
|
|
|
|
</ListItem>
|
|
|
|
<ListItem title={Locale.Memory.Title} subTitle={Locale.Memory.Send}>
|
|
|
|
<input
|
|
|
|
type="checkbox"
|
|
|
|
checked={props.modelConfig.sendMemory}
|
|
|
|
onChange={(e) =>
|
|
|
|
props.updateConfig(
|
|
|
|
(config) => (config.sendMemory = e.currentTarget.checked),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
></input>
|
|
|
|
</ListItem>
|
2023-04-22 17:37:47 +00:00
|
|
|
</>
|
2023-04-22 17:27:15 +00:00
|
|
|
);
|
|
|
|
}
|