[feat] depth promp

This commit is contained in:
kwaroran
2023-11-09 13:49:46 +09:00
parent d4fa526dab
commit 1d5edf710d
6 changed files with 47 additions and 4 deletions

View File

@@ -301,6 +301,16 @@ async function importSpecv2(card:CharacterCardV2, img?:Uint8Array, mode?:'hub'|'
}
let ext = cloneDeep(data?.extensions ?? {})
for(const key in ext){
if(key === 'risuai'){
delete ext[key]
}
if(key === 'depth_prompt'){
delete ext[key]
}
}
let char:character = {
name: data.name ?? '',
@@ -350,6 +360,7 @@ async function importSpecv2(card:CharacterCardV2, img?:Uint8Array, mode?:'hub'|'
private: data?.extensions?.risuai?.private ?? false,
additionalText: data?.extensions?.risuai?.additionalText ?? '',
virtualscript: data?.extensions?.risuai?.virtualscript ?? '',
extentions: ext ?? {}
}
db.characters.push(char)
@@ -431,11 +442,20 @@ async function createBaseV2(char:character) {
triggerscript: char.triggerscript,
additionalText: char.additionalText,
virtualscript: char.virtualscript,
}
},
depth_prompt: char.depth_prompt
}
}
}
console.log(card)
if(char.extentions){
for(const key in char.extentions){
if(key === 'risuai' || key === 'depth_prompt'){
continue
}
card.data.extensions[key] = char.extentions[key]
}
}
return card
}
@@ -703,6 +723,7 @@ type CharacterCardV2 = {
additionalText?:string
virtualscript?:string
}
depth_prompt?: { depth: number, prompt: string }
}
}
}

View File

@@ -290,7 +290,10 @@ export function characterFormatUpdate(index:number|character){
cha.postHistoryInstructions = null
}
cha.additionalText ??= ''
cha.depth_prompt ??= {
depth: 0,
prompt: ''
}
}
else{
if((!cha.characterTalks) || cha.characterTalks.length !== cha.characters.length){

View File

@@ -727,6 +727,16 @@ export async function sendChat(chatProcessIndex = -1,arg:{chatAdditonalTokens?:n
formated = cipherChat(formated)
}
if(currentChar.depth_prompt && currentChar.depth_prompt.prompt.length > 0){
//depth_prompt
const depthPrompt = currentChar.depth_prompt
formated.splice(formated.length - depthPrompt.depth, 0, {
role: 'system',
content: risuChatParser(depthPrompt.prompt, {chara: currentChar})
})
}
{
//token rechecking
let tokens = 0

View File

@@ -579,6 +579,8 @@ export interface character{
oaiVoice?:string
virtualscript?:string
scriptstate?:{[key:string]:string|number|boolean}
depth_prompt?: { depth: number, prompt: string }
extentions?:{[key:string]:any}
}