[feat] additional description
This commit is contained in:
@@ -185,6 +185,7 @@ function convertOldTavernAndJSON(charaData:OldTavernChar, imgp:string|undefined
|
||||
firstMsgIndex: -1,
|
||||
replaceGlobalNote: "",
|
||||
triggerscript: [],
|
||||
additionalText: ''
|
||||
}
|
||||
}
|
||||
|
||||
@@ -346,7 +347,8 @@ async function importSpecv2(card:CharacterCardV2, img?:Uint8Array, mode?:'hub'|'
|
||||
backgroundHTML: data?.extensions?.risuai?.backgroundHTML,
|
||||
license: data?.extensions?.risuai?.license,
|
||||
triggerscript: data?.extensions?.risuai?.triggerscript ?? [],
|
||||
private: data?.extensions?.risuai?.private ?? false
|
||||
private: data?.extensions?.risuai?.private ?? false,
|
||||
additionalText: data?.extensions?.risuai?.additionalText ?? '',
|
||||
}
|
||||
|
||||
db.characters.push(char)
|
||||
@@ -424,7 +426,10 @@ async function createBaseV2(char:character) {
|
||||
sdData: char.sdData,
|
||||
additionalAssets: char.additionalAssets,
|
||||
backgroundHTML: char.backgroundHTML,
|
||||
license: char.license
|
||||
license: char.license,
|
||||
triggerscript: char.triggerscript,
|
||||
additionalText: char.additionalText
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -463,6 +468,7 @@ export async function exportSpecV2(char:character, type:'png'|'json' = 'png') {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if(type === 'json'){
|
||||
await downloadFile(`${char.name.replace(/[<>:"/\\|?*\.\,]/g, "")}_export.json`, Buffer.from(JSON.stringify(card, null, 4), 'utf-8'))
|
||||
alertNormal(language.successExport)
|
||||
@@ -693,6 +699,7 @@ type CharacterCardV2 = {
|
||||
license?:string,
|
||||
triggerscript?:triggerscript[]
|
||||
private?:boolean
|
||||
additionalText?:string
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -289,6 +289,7 @@ export function characterFormatUpdate(index:number|character){
|
||||
cha.chats[cha.chatPage].note = cha.chats[cha.chatPage].note.trim()
|
||||
cha.postHistoryInstructions = null
|
||||
}
|
||||
cha.additionalText ??= ''
|
||||
|
||||
}
|
||||
else{
|
||||
@@ -350,7 +351,8 @@ export function createBlankChar():character{
|
||||
scenario:"",
|
||||
firstMsgIndex: -1,
|
||||
replaceGlobalNote: "",
|
||||
triggerscript: []
|
||||
triggerscript: [],
|
||||
additionalText: ''
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
37
src/ts/process/embedding/addinfo.ts
Normal file
37
src/ts/process/embedding/addinfo.ts
Normal file
@@ -0,0 +1,37 @@
|
||||
import { DataBase, type Chat, type character } from "src/ts/storage/database";
|
||||
import { HypaProcesser } from '../memory/hypamemory'
|
||||
import type { OpenAIChat } from "..";
|
||||
import { stringlizeChat } from "../stringlize";
|
||||
import { get } from "svelte/store";
|
||||
|
||||
export async function additionalInformations(char: character,chats:Chat,){
|
||||
const processer = new HypaProcesser('MiniLM')
|
||||
const db = get(DataBase)
|
||||
|
||||
const info = char.additionalText
|
||||
if(info){
|
||||
const infos = info.split('\n\n')
|
||||
|
||||
await processer.addText(infos)
|
||||
const filteredChat = chats.message.slice(0, 4).map((chat) => {
|
||||
let name = chat.saying ?? ''
|
||||
|
||||
if(!name){
|
||||
if(chat.role === 'user'){
|
||||
name = db.username
|
||||
}
|
||||
else{
|
||||
name = char.name
|
||||
}
|
||||
}
|
||||
|
||||
return `${name}: ${chat.data}`
|
||||
}).join("\n\n")
|
||||
const searched = await processer.similaritySearch(filteredChat)
|
||||
const result = searched.slice(0,3).join("\n\n")
|
||||
return result
|
||||
}
|
||||
|
||||
return ''
|
||||
|
||||
}
|
||||
@@ -17,6 +17,7 @@ import { clone, cloneDeep } from "lodash";
|
||||
import { groupOrder } from "./group";
|
||||
import { runTrigger, type additonalSysPrompt } from "./triggers";
|
||||
import { HypaProcesser } from "./memory/hypamemory";
|
||||
import { additionalInformations } from "./embedding/addinfo";
|
||||
|
||||
export interface OpenAIChat{
|
||||
role: 'system'|'user'|'assistant'|'function'
|
||||
@@ -226,6 +227,9 @@ export async function sendChat(chatProcessIndex = -1,arg:{chatAdditonalTokens?:n
|
||||
{
|
||||
let description = risuChatParser((db.promptPreprocess ? db.descriptionPrefix: '') + currentChar.desc, {chara: currentChar})
|
||||
|
||||
const additionalInfo = await additionalInformations(currentChar, currentChat)
|
||||
|
||||
|
||||
if(currentChar.personality){
|
||||
description += risuChatParser("\n\nDescription of {{char}}: " + currentChar.personality, {chara: currentChar})
|
||||
}
|
||||
|
||||
@@ -572,6 +572,7 @@ export interface character{
|
||||
backgroundCSS?:string
|
||||
license?:string
|
||||
private?:boolean
|
||||
additionalText:string
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user