[fix] ooba template

This commit is contained in:
kwaroran
2023-11-16 04:11:43 +09:00
parent c2cf83df41
commit bfe33304df
2 changed files with 10 additions and 6 deletions

View File

@@ -105,12 +105,7 @@
<OptionalInput marginBottom={true} bind:value={$DataBase.reverseProxyOobaArgs.custom_token_bans} />
<span class="text-textcolor">grammar_string</span>
<OptionalInput marginBottom={true} bind:value={$DataBase.reverseProxyOobaArgs.grammar_string} />
<span class="text-textcolor">custom_token_bans</span>
<OptionalInput marginBottom={true} bind:value={$DataBase.reverseProxyOobaArgs.custom_token_bans} />
<span class="text-textcolor">grammar_string</span>
<OptionalInput marginBottom={true} bind:value={$DataBase.reverseProxyOobaArgs.grammar_string} />
<span class="text-textcolor">temperature_last</span>
<OptionalInput marginBottom={true} bind:value={$DataBase.reverseProxyOobaArgs.temperature_last} boolMode />
<span class="text-textcolor">do_sample</span>

View File

@@ -683,6 +683,8 @@ export interface botPreset{
NAIappendName?: boolean
localStopStrings?: string[]
customProxyRequestModel?: string
reverseProxyOobaArgs?: OobaChatCompletionRequestParams
}
@@ -855,6 +857,9 @@ export const presetTemplate:botPreset = {
bias: [],
ooba: cloneDeep(defaultOoba),
ainconfig: cloneDeep(defaultAIN),
reverseProxyOobaArgs: {
mode: 'instruct'
}
}
@@ -910,6 +915,7 @@ export function saveCurrentPreset(){
localStopStrings: db.localStopStrings,
autoSuggestPrompt: db.autoSuggestPrompt,
customProxyRequestModel: db.customProxyRequestModel,
reverseProxyOobaArgs: cloneDeep(db.reverseProxyOobaArgs) ?? null
}
db.botPresets = pres
setDatabase(db)
@@ -975,6 +981,9 @@ export function setPreset(db:Database, newPres: botPreset){
db.NAIsettings.mirostat_lr ??= 1
db.localStopStrings = newPres.localStopStrings
db.customProxyRequestModel = newPres.customProxyRequestModel ?? ''
db.reverseProxyOobaArgs = cloneDeep(newPres.reverseProxyOobaArgs) ?? {
mode: 'instruct'
}
return db
}