781 lines
37 KiB
Svelte
781 lines
37 KiB
Svelte
<script lang="ts">
|
|
import { language } from "../../lang";
|
|
import { tokenize } from "../../ts/tokenizer";
|
|
import { DataBase, saveImage as saveAsset, type Database, type character, type groupChat } from "../../ts/storage/database";
|
|
import { selectedCharID } from "../../ts/stores";
|
|
import { PlusIcon, SmileIcon, TrashIcon, UserIcon, ActivityIcon, BookIcon, LoaderIcon, User, DnaIcon, CurlyBraces, Volume2Icon, XIcon } from 'lucide-svelte'
|
|
import Check from "../UI/GUI/Check.svelte";
|
|
import { addCharEmotion, addingEmotion, getCharImage, rmCharEmotion, selectCharImg, makeGroupImage } from "../../ts/characters";
|
|
import LoreBook from "./LoreBookSetting.svelte";
|
|
import { alertConfirm, alertError, alertSelectChar } from "../../ts/alert";
|
|
import BarIcon from "./BarIcon.svelte";
|
|
import { findCharacterbyId, selectMultipleFile } from "../../ts/util";
|
|
import { onDestroy } from "svelte";
|
|
import {isEqual, cloneDeep} from 'lodash'
|
|
import Help from "../Others/Help.svelte";
|
|
import RegexData from "./RegexData.svelte";
|
|
import { exportChar, shareRisuHub } from "src/ts/characterCards";
|
|
import { getElevenTTSVoices, getWebSpeechTTSVoices, getVOICEVOXVoices } from "src/ts/process/tts";
|
|
import { checkCharOrder, getFileSrc } from "src/ts/storage/globalApi";
|
|
import { addGroupChar, rmCharFromGroup } from "src/ts/process/group";
|
|
import RealmUpload from "../UI/Realm/RealmUpload.svelte";
|
|
import TextInput from "../UI/GUI/TextInput.svelte";
|
|
import NumberInput from "../UI/GUI/NumberInput.svelte";
|
|
import TextAreaInput from "../UI/GUI/TextAreaInput.svelte";
|
|
import Button from "../UI/GUI/Button.svelte";
|
|
import SelectInput from "../UI/GUI/SelectInput.svelte";
|
|
import OptionInput from "../UI/GUI/OptionInput.svelte";
|
|
|
|
let subMenu = 0
|
|
let openHubUpload = false
|
|
let emos:[string, string][] = []
|
|
let tokens = {
|
|
desc: 0,
|
|
firstMsg: 0,
|
|
localNote: 0,
|
|
charaNote: 0
|
|
}
|
|
|
|
let lasttokens = {
|
|
desc: '',
|
|
firstMsg: '',
|
|
localNote: '',
|
|
charaNote: ''
|
|
}
|
|
|
|
async function loadTokenize(chara){
|
|
const cha = chara
|
|
if(cha.type !== 'group'){
|
|
if(lasttokens.desc !== cha.desc){
|
|
if(cha.desc){
|
|
lasttokens.desc = cha.desc
|
|
tokens.desc = await tokenize(cha.desc)
|
|
}
|
|
}
|
|
if(lasttokens.firstMsg !==chara.firstMessage){
|
|
lasttokens.firstMsg = chara.firstMessage
|
|
tokens.firstMsg = await tokenize(chara.firstMessage)
|
|
}
|
|
}
|
|
if(lasttokens.localNote !== currentChar.data.chats[currentChar.data.chatPage].note){
|
|
lasttokens.localNote = currentChar.data.chats[currentChar.data.chatPage].note
|
|
tokens.localNote = await tokenize(currentChar.data.chats[currentChar.data.chatPage].note)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let database:Database
|
|
let currentChar:{
|
|
type: 'character',
|
|
data: character
|
|
}|{
|
|
type: 'group',
|
|
data: groupChat
|
|
}
|
|
|
|
|
|
const unsub = DataBase.subscribe((v) => {
|
|
database = v
|
|
const cha = (v.characters[$selectedCharID])
|
|
if(!cha){
|
|
return
|
|
}
|
|
if((!currentChar) || (!isEqual(currentChar.data, cha))){
|
|
console.log("updated")
|
|
if(cha.type === 'character'){
|
|
currentChar = {
|
|
type: 'character',
|
|
data: cloneDeep(cha)
|
|
}
|
|
}
|
|
else{
|
|
currentChar = {
|
|
type: 'group',
|
|
data: cloneDeep(cha)
|
|
}
|
|
}
|
|
}
|
|
emos = currentChar.data.emotionImages
|
|
currentChar = currentChar
|
|
})
|
|
|
|
let assetFileExtensions:string[] = []
|
|
let assetFilePath:string[] = []
|
|
|
|
$: {
|
|
if(database.characters[$selectedCharID].chaId === currentChar.data.chaId){
|
|
database.characters[$selectedCharID] = currentChar.data
|
|
}
|
|
else{
|
|
loadTokenize(currentChar.data)
|
|
}
|
|
emos = currentChar.data.emotionImages
|
|
DataBase.set(database)
|
|
loadTokenize(currentChar.data)
|
|
|
|
if(currentChar.type ==='character' && database.useAdditionalAssetsPreview){
|
|
if(currentChar.data.additionalAssets){
|
|
for(let i = 0; i < currentChar.data.additionalAssets.length; i++){
|
|
if(currentChar.data.additionalAssets[i].length > 2 && currentChar.data.additionalAssets[i][2]) {
|
|
assetFileExtensions[i] = currentChar.data.additionalAssets[i][2]
|
|
} else
|
|
assetFileExtensions[i] = currentChar.data.additionalAssets[i][1].split('.').pop()
|
|
getFileSrc(currentChar.data.additionalAssets[i][1]).then((filePath) => {
|
|
assetFilePath[i] = filePath
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
onDestroy(unsub);
|
|
|
|
</script>
|
|
|
|
<div class="flex gap-2 mb-2">
|
|
<button class={subMenu === 0 ? 'text-gray-200 ' : 'text-gray-500'} on:click={() => {subMenu = 0}}>
|
|
<UserIcon />
|
|
</button>
|
|
<button class={subMenu === 1 ? 'text-gray-200' : 'text-gray-500'} on:click={() => {subMenu = 1}}>
|
|
<SmileIcon />
|
|
</button>
|
|
<button class={subMenu === 3 ? 'text-gray-200' : 'text-gray-500'} on:click={() => {subMenu = 3}}>
|
|
<BookIcon />
|
|
</button>
|
|
{#if currentChar.type === 'character'}
|
|
<button class={subMenu === 5 ? 'text-gray-200' : 'text-gray-500'} on:click={() => {subMenu = 5}}>
|
|
<Volume2Icon />
|
|
</button>
|
|
<button class={subMenu === 4 ? 'text-gray-200' : 'text-gray-500'} on:click={() => {subMenu = 4}}>
|
|
<CurlyBraces />
|
|
</button>
|
|
{/if}
|
|
<button class={subMenu === 2 ? 'text-gray-200' : 'text-gray-500'} on:click={() => {subMenu = 2}}>
|
|
<ActivityIcon />
|
|
</button>
|
|
</div>
|
|
|
|
|
|
{#if subMenu === 0}
|
|
{#if currentChar.type !== 'group'}
|
|
<TextInput size="xl" marginBottom placeholder="Character Name" bind:value={currentChar.data.name} />
|
|
<span class="text-neutral-200">{language.description} <Help key="charDesc"/></span>
|
|
<TextAreaInput margin="both" autocomplete="off" bind:value={currentChar.data.desc}></TextAreaInput>
|
|
<span class="text-gray-400 mb-6 text-sm">{tokens.desc} {language.tokens}</span>
|
|
<span class="text-neutral-200">{language.firstMessage} <Help key="charFirstMessage"/></span>
|
|
<TextAreaInput margin="both" autocomplete="off" bind:value={currentChar.data.firstMessage}></TextAreaInput>
|
|
<span class="text-gray-400 mb-6 text-sm">{tokens.firstMsg} {language.tokens}</span>
|
|
|
|
{:else}
|
|
<TextInput size="xl" marginBottom placeholder="Group Name" bind:value={currentChar.data.name} />
|
|
<span class="text-neutral-200">{language.character}</span>
|
|
<div class="p-4 gap-2 bg-bgcolor rounded-lg char-grid">
|
|
{#if currentChar.data.characters.length === 0}
|
|
<span class="text-gray-500">No Character</span>
|
|
{:else}
|
|
<div></div>
|
|
<div class="text-center">{language.talkness}</div>
|
|
<div class="text-center">{language.active}</div>
|
|
{#each currentChar.data.characters as char, i}
|
|
{#await getCharImage(findCharacterbyId(char).image, 'css')}
|
|
<BarIcon onClick={() => {
|
|
rmCharFromGroup(i)
|
|
}}>
|
|
<User/>
|
|
</BarIcon>
|
|
{:then im}
|
|
<BarIcon onClick={() => {
|
|
rmCharFromGroup(i)
|
|
}} additionalStyle={im} />
|
|
{/await}
|
|
<div class="flex items-center px-2 py-3">
|
|
{#each [1,2,3,4,5,6] as barIndex}
|
|
<button class="bg-selected h-full flex-1 border-r-bgcolor border-r"
|
|
class:bg-green-500={currentChar.data.characterTalks[i] >= (1 / 6 * barIndex)}
|
|
class:bg-selected={currentChar.data.characterTalks[i] < (1 / 6 * barIndex)}
|
|
class:rounded-l-lg={barIndex === 1}
|
|
class:rounded-r-lg={barIndex === 6}
|
|
on:click={() => {
|
|
if(currentChar.data.type === 'group'){
|
|
currentChar.data.characterTalks[i] = (1 / 6 * barIndex)
|
|
}
|
|
}}
|
|
></button>
|
|
{/each}
|
|
</div>
|
|
<div class="flex items-center justify-center">
|
|
<Check margin={false} bind:check={currentChar.data.characterActive[i]} />
|
|
</div>
|
|
{/each}
|
|
{/if}
|
|
</div>
|
|
<div class="text-gray-500 mt-1 flex mb-6">
|
|
<button on:click={addGroupChar} class="hover:text-neutral-200 cursor-pointer">
|
|
<PlusIcon />
|
|
</button>
|
|
</div>
|
|
|
|
{/if}
|
|
<span class="text-neutral-200">{language.authorNote} <Help key="chatNote"/></span>
|
|
<TextAreaInput margin="both" autocomplete="off" bind:value={currentChar.data.chats[currentChar.data.chatPage].note}></TextAreaInput>
|
|
<span class="text-gray-400 mb-6 text-sm">{tokens.localNote} {language.tokens}</span>
|
|
<div class="flex mt-6 items-center">
|
|
<Check bind:check={$DataBase.jailbreakToggle} name={language.jailbreakToggle}/>
|
|
</div>
|
|
|
|
{#if $DataBase.supaMemoryType !== 'none'}
|
|
<div class="flex mt-2 items-center">
|
|
<Check bind:check={currentChar.data.supaMemory} name={language.ToggleSuperMemory}/>
|
|
</div>
|
|
{/if}
|
|
|
|
{#if currentChar.type === 'group'}
|
|
<div class="flex mt-2 items-center">
|
|
<Check bind:check={currentChar.data.orderByOrder} name={language.orderByOrder}/>
|
|
</div>
|
|
{/if}
|
|
{:else if subMenu === 1}
|
|
<h2 class="mb-2 text-2xl font-bold mt-2">{language.characterDisplay}</h2>
|
|
<span class="text-neutral-200 mt-2 mb-2">{currentChar.type !== 'group' ? language.charIcon : language.groupIcon}</span>
|
|
<button on:click={async () => {await selectCharImg($selectedCharID);currentChar = currentChar}}>
|
|
{#if currentChar.data.image === ''}
|
|
<div class="rounded-md h-32 w-32 shadow-lg bg-gray-500 cursor-pointer hover:text-green-500" />
|
|
{:else}
|
|
{#await getCharImage(currentChar.data.image, 'css')}
|
|
<div class="rounded-md h-32 w-32 shadow-lg bg-gray-500 cursor-pointer hover:text-green-500"></div>
|
|
{:then im}
|
|
<div class="rounded-md h-32 w-32 shadow-lg bg-gray-500 cursor-pointer hover:text-green-500" style={im} />
|
|
{/await}
|
|
{/if}
|
|
</button>
|
|
|
|
{#if currentChar.type === 'group'}
|
|
<button
|
|
on:click={makeGroupImage}
|
|
class="drop-shadow-lg p-2 border-borderc border-solid mt-2 flex justify-center items-center ml-2 mr-2 border-1 hover:bg-selected">
|
|
{language.createGroupImg}
|
|
</button>
|
|
{/if}
|
|
|
|
|
|
<span class="text-neutral-200 mt-6 mb-2">{language.viewScreen}</span>
|
|
<!-- svelte-ignore empty-block -->
|
|
|
|
{#if currentChar.type !== 'group'}
|
|
<SelectInput className="mb-2" bind:value={currentChar.data.viewScreen}>
|
|
<OptionInput value="none">{language.none}</OptionInput>
|
|
<OptionInput value="emotion">{language.emotionImage}</OptionInput>
|
|
<OptionInput value="imggen">{language.imageGeneration}</OptionInput>
|
|
</SelectInput>
|
|
{:else}
|
|
<SelectInput className="mb-2" bind:value={currentChar.data.viewScreen}>
|
|
<OptionInput value="none">{language.none}</OptionInput>
|
|
<OptionInput value="single">{language.singleView}</OptionInput>
|
|
<OptionInput value="multiple">{language.SpacedView}</OptionInput>
|
|
<OptionInput value="emp">{language.emphasizedView}</OptionInput>
|
|
|
|
</SelectInput>
|
|
{/if}
|
|
|
|
{#if currentChar.data.viewScreen === 'emotion'}
|
|
<span class="text-neutral-200 mt-6">{language.emotionImage} <Help key="emotion"/></span>
|
|
<span class="text-gray-400 text-xs">{language.emotionWarn}</span>
|
|
|
|
<div class="w-full max-w-full border border-selected p-2 rounded-md">
|
|
|
|
<table class="w-full max-w-full tabler">
|
|
<tr>
|
|
<th class="font-medium w-1/3">{language.image}</th>
|
|
<th class="font-medium w-1/2">{language.emotion}</th>
|
|
<th class="font-medium"></th>
|
|
</tr>
|
|
{#if currentChar.data.emotionImages.length === 0}
|
|
<tr>
|
|
<div class="text-gray-500">{language.noImages}</div>
|
|
</tr>
|
|
{:else}
|
|
{#each emos as emo, i}
|
|
<tr>
|
|
{#await getCharImage(emo[1], 'plain')}
|
|
<td class="font-medium truncate w-1/3"></td>
|
|
{:then im}
|
|
<td class="font-medium truncate w-1/3"><img src={im} alt="img" class="w-full"></td>
|
|
{/await}
|
|
<td class="font-medium truncate w-1/2">
|
|
<TextInput marginBottom size='lg' bind:value={currentChar.data.emotionImages[i][0]} />
|
|
</td>
|
|
<button class="font-medium cursor-pointer hover:text-green-500" on:click={() => {
|
|
rmCharEmotion($selectedCharID,i)
|
|
}}><TrashIcon /></button>
|
|
</tr>
|
|
{/each}
|
|
{/if}
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<div class="text-gray-500 hover:text-neutral-200 mt-2 flex">
|
|
{#if !$addingEmotion}
|
|
<button class="cursor-pointer hover:text-green-500" on:click={() => {addCharEmotion($selectedCharID)}}>
|
|
<PlusIcon />
|
|
</button>
|
|
{:else}
|
|
<span>Loading...</span>
|
|
{/if}
|
|
</div>
|
|
{/if}
|
|
{#if currentChar.data.viewScreen === 'imggen'}
|
|
<span class="text-neutral-200 mt-6">{language.imageGeneration} <Help key="imggen"/></span>
|
|
<span class="text-gray-400 text-xs">{language.emotionWarn}</span>
|
|
|
|
<div class="w-full max-w-full border border-selected rounded-md p-2">
|
|
<table class="w-full max-w-full tabler">
|
|
<tr>
|
|
<th class="font-medium w-1/3">{language.key}</th>
|
|
<th class="font-medium w-1/2">{language.value}</th>
|
|
<th class="font-medium"></th>
|
|
</tr>
|
|
{#if currentChar.data.sdData.length === 0}
|
|
<tr>
|
|
<div class="text-gray-500">{language.noData}</div>
|
|
</tr>
|
|
{/if}
|
|
{#each currentChar.data.sdData as emo, i}
|
|
<tr>
|
|
<td class="font-medium truncate w-1/3">
|
|
<TextInput size="sm" marginBottom bind:value={currentChar.data.sdData[i][0]} />
|
|
</td>
|
|
<td class="font-medium truncate w-1/2">
|
|
<TextInput size="sm" marginBottom bind:value={currentChar.data.sdData[i][1]} />
|
|
</td>
|
|
{#if (!['always','negative'].includes(currentChar.data.sdData[i][0]))}
|
|
<button class="font-medium flex justify-center items-center h-full cursor-pointer hover:text-green-500" on:click={() => {
|
|
let db = ($DataBase)
|
|
let charId = $selectedCharID
|
|
let dbChar = db.characters[charId]
|
|
if(dbChar.type !== 'group'){
|
|
dbChar.sdData.splice(i, 1)
|
|
db.characters[charId] = dbChar
|
|
}
|
|
$DataBase = (db)
|
|
}}><TrashIcon /></button>
|
|
{:else}
|
|
<td></td>
|
|
{/if}
|
|
</tr>
|
|
{/each}
|
|
</table>
|
|
</div>
|
|
<div class="text-gray-500 hover:text-neutral-200 mt-2 flex">
|
|
{#if !$addingEmotion}
|
|
<button class="cursor-pointer hover:text-green-500" on:click={() => {
|
|
let db = ($DataBase)
|
|
let charId = $selectedCharID
|
|
let dbChar = db.characters[charId]
|
|
if(dbChar.type !== 'group'){
|
|
dbChar.sdData.push(['', ''])
|
|
db.characters[charId] = dbChar
|
|
}
|
|
$DataBase = (db)
|
|
}}>
|
|
<PlusIcon />
|
|
</button>
|
|
{:else}
|
|
<span>Loading...</span>
|
|
{/if}
|
|
</div>
|
|
<span class="text-neutral-200 mt-6">{language.currentImageGeneration}</span>
|
|
{#if currentChar.data.chats[currentChar.data.chatPage].sdData}
|
|
<TextAreaInput margin="both" autocomplete="off" bind:value={currentChar.data.chats[currentChar.data.chatPage].sdData}></TextAreaInput>
|
|
{:else}
|
|
<span><div class="text-gray-500">{language.noData}</div></span>
|
|
{/if}
|
|
{/if}
|
|
{:else if subMenu === 3}
|
|
<h2 class="mb-2 text-2xl font-bold mt-2">{language.loreBook} <Help key="lorebook"/></h2>
|
|
<LoreBook />
|
|
{:else if subMenu === 4}
|
|
{#if currentChar.type === 'character'}
|
|
<h2 class="mb-2 text-2xl font-bold mt-2">{language.scripts}</h2>
|
|
|
|
<span class="text-neutral-200 mt-2">Bias <Help key="bias"/></span>
|
|
<div class="w-full max-w-full border border-selected rounded-md p-2">
|
|
|
|
<table class="w-full max-w-full tabler mt-2">
|
|
<tr>
|
|
<th class="font-medium w-1/2">Bias</th>
|
|
<th class="font-medium w-1/3">{language.value}</th>
|
|
<th>
|
|
<button class="font-medium cursor-pointer hover:text-green-500" on:click={() => {
|
|
if(currentChar.type === 'character'){
|
|
let bia = currentChar.data.bias
|
|
bia.push(['', 0])
|
|
currentChar.data.bias = bia
|
|
}
|
|
}}><PlusIcon /></button>
|
|
</th>
|
|
</tr>
|
|
{#if currentChar.data.bias.length === 0}
|
|
<tr>
|
|
<div class="text-gray-500"> {language.noBias}</div>
|
|
</tr>
|
|
{/if}
|
|
{#each currentChar.data.bias as bias, i}
|
|
<tr class="align-middle text-center">
|
|
<td class="font-medium truncate w-1/2">
|
|
<TextInput fullh fullwidth bind:value={currentChar.data.bias[i][0]} placeholder="string" />
|
|
</td>
|
|
<td class="font-medium truncate w-1/3">
|
|
<NumberInput fullh fullwidth bind:value={currentChar.data.bias[i][1]} max={100} min={-100} />
|
|
</td>
|
|
<td>
|
|
<button class="font-medium flex justify-center items-center w-full h-full cursor-pointer hover:text-green-500" on:click={() => {
|
|
if(currentChar.type === 'character'){
|
|
let bia = currentChar.data.bias
|
|
bia.splice(i, 1)
|
|
currentChar.data.bias = bia
|
|
}
|
|
}}><TrashIcon /></button>
|
|
</td>
|
|
</tr>
|
|
{/each}
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<span class="text-neutral-200 mt-4">{language.regexScript} <Help key="regexScript"/></span>
|
|
<div class="w-full max-w-full border border-selected rounded-md p-2">
|
|
<table class="w-full max-w-full tabler mt-2 flex flex-col p-2 gap-2">
|
|
{#if currentChar.data.customscript.length === 0}
|
|
<div class="text-gray-500">No Scripts</div>
|
|
{/if}
|
|
{#each currentChar.data.customscript as customscript, i}
|
|
<RegexData bind:value={currentChar.data.customscript[i]} onRemove={() => {
|
|
if(currentChar.type === 'character'){
|
|
let customscript = currentChar.data.customscript
|
|
customscript.splice(i, 1)
|
|
currentChar.data.customscript = customscript
|
|
}
|
|
}}/>
|
|
{/each}
|
|
</table>
|
|
</div>
|
|
<button class="font-medium cursor-pointer hover:text-green-500 mb-2" on:click={() => {
|
|
if(currentChar.type === 'character'){
|
|
let script = currentChar.data.customscript
|
|
script.push({
|
|
comment: "",
|
|
in: "",
|
|
out: "",
|
|
type: "editinput"
|
|
})
|
|
currentChar.data.customscript = script
|
|
}
|
|
}}><PlusIcon /></button>
|
|
{/if}
|
|
{:else if subMenu === 5}
|
|
{#if currentChar.type === 'character'}
|
|
<h2 class="mb-2 text-2xl font-bold mt-2">TTS</h2>
|
|
<span class="text-neutral-200">{language.provider}</span>
|
|
<SelectInput className="mb-4 mt-2" bind:value={currentChar.data.ttsMode} on:change={() => {
|
|
if(currentChar.type === 'character'){
|
|
currentChar.data.ttsSpeech = ''
|
|
}
|
|
}}>
|
|
<OptionInput value="">{language.disabled}</OptionInput>
|
|
<OptionInput value="elevenlab">ElevenLabs</OptionInput>
|
|
<OptionInput value="webspeech">Web Speech</OptionInput>
|
|
<OptionInput value="VOICEVOX">VOICEVOX</OptionInput>
|
|
</SelectInput>
|
|
|
|
|
|
{#if currentChar.data.ttsMode === 'webspeech'}
|
|
{#if !speechSynthesis}
|
|
<span class="text-neutral-200">Web Speech isn't supported in your browser or OS</span>
|
|
{:else}
|
|
<span class="text-neutral-200">{language.Speech}</span>
|
|
<SelectInput className="mb-4 mt-2" bind:value={currentChar.data.ttsSpeech}>
|
|
<OptionInput value="">Auto</OptionInput>
|
|
{#each getWebSpeechTTSVoices() as voice}
|
|
<OptionInput value={voice}>{voice}</OptionInput>
|
|
{/each}
|
|
</SelectInput>
|
|
{#if currentChar.data.ttsSpeech !== ''}
|
|
<span class="text-red-400 text-sm">If you do not set it to Auto, it may not work properly when importing from another OS or browser.</span>
|
|
{/if}
|
|
{/if}
|
|
{:else if currentChar.data.ttsMode === 'elevenlab'}
|
|
<span class="text-sm mb-2 text-gray-400">Please set the ElevenLabs API key in "global Settings → Bot Settings → Others → ElevenLabs API key"</span>
|
|
{#await getElevenTTSVoices() then voices}
|
|
<span class="text-neutral-200">{language.Speech}</span>
|
|
<SelectInput className="mb-4 mt-2" bind:value={currentChar.data.ttsSpeech}>
|
|
<OptionInput value="">Unset</OptionInput>
|
|
{#each voices as voice}
|
|
<OptionInput value={voice.voice_id}>{voice.name}</OptionInput>
|
|
{/each}
|
|
</SelectInput>
|
|
{/await}
|
|
{:else if currentChar.data.ttsMode === 'VOICEVOX'}
|
|
<span class="text-neutral-200">Speaker</span>
|
|
<SelectInput className="mb-4 mt-2" bind:value={currentChar.data.voicevoxConfig.speaker}>
|
|
{#await getVOICEVOXVoices() then voices}
|
|
{#each voices as voice}
|
|
<OptionInput value={voice.list} selected={currentChar.data.voicevoxConfig.speaker === voice.list}>{voice.name}</OptionInput>
|
|
{/each}
|
|
{/await}
|
|
</SelectInput>
|
|
{#if currentChar.data.voicevoxConfig.speaker}
|
|
<span class="text=neutral-200">Style</span>
|
|
<SelectInput className="mb-4 mt-2" bind:value={currentChar.data.ttsSpeech}>
|
|
{#each JSON.parse(currentChar.data.voicevoxConfig.speaker) as styles}
|
|
<OptionInput value={styles.id} selected={currentChar.data.ttsSpeech === styles.id}>{styles.name}</OptionInput>
|
|
{/each}
|
|
</SelectInput>
|
|
{/if}
|
|
<span class="text-neutral-200">Speed scale</span>
|
|
<NumberInput size={"sm"} marginBottom bind:value={currentChar.data.voicevoxConfig.SPEED_SCALE}/>
|
|
|
|
<span class="text-neutral-200">Pitch scale</span>
|
|
<NumberInput size={"sm"} marginBottom bind:value={currentChar.data.voicevoxConfig.PITCH_SCALE}/>
|
|
|
|
<span class="text-neutral-200">Volume scale</span>
|
|
<NumberInput size={"sm"} marginBottom bind:value={currentChar.data.voicevoxConfig.VOLUME_SCALE}/>
|
|
|
|
<span class="text-neutral-200">Intonation scale</span>
|
|
<NumberInput size={"sm"} marginBottom bind:value={currentChar.data.voicevoxConfig.INTONATION_SCALE}/>
|
|
<span class="text-sm mb-2 text-gray-400">To use VOICEVOX, you need to run a colab and put the localtunnel URL in "Settings → Other Bots". https://colab.research.google.com/drive/1tyeXJSklNfjW-aZJAib1JfgOMFarAwze</span>
|
|
{/if}
|
|
{#if currentChar.data.ttsMode === 'webspeech' || currentChar.data.ttsMode === 'elevenlab' || currentChar.data.ttsMode === 'VOICEVOX'}
|
|
<div class="flex items-center mt-2">
|
|
<Check bind:check={currentChar.data.ttsReadOnlyQuoted} name={language.ttsReadOnlyQuoted}/>
|
|
</div>
|
|
{/if}
|
|
{/if}
|
|
{:else if subMenu === 2}
|
|
<h2 class="mb-2 text-2xl font-bold mt-2">{language.advancedSettings}</h2>
|
|
{#if currentChar.type !== 'group'}
|
|
<span class="text-neutral-200">{language.exampleMessage} <Help key="exampleMessage"/></span>
|
|
<TextAreaInput margin="both" autocomplete="off" bind:value={currentChar.data.exampleMessage}></TextAreaInput>
|
|
|
|
<span class="text-neutral-200">{language.creatorNotes} <Help key="creatorQuotes"/></span>
|
|
<TextAreaInput margin="both" autocomplete="off" bind:value={currentChar.data.creatorNotes} on:input={() => {
|
|
currentChar.data.removedQuotes = false
|
|
}}></TextAreaInput>
|
|
|
|
<span class="text-neutral-200">{language.systemPrompt} <Help key="systemPrompt"/></span>
|
|
<TextAreaInput margin="both" autocomplete="off" bind:value={currentChar.data.systemPrompt}></TextAreaInput>
|
|
|
|
<span class="text-neutral-200">{language.replaceGlobalNote} <Help key="replaceGlobalNote"/></span>
|
|
<TextAreaInput margin="both" autocomplete="off" bind:value={currentChar.data.replaceGlobalNote}></TextAreaInput>
|
|
|
|
|
|
{#if currentChar.data.chats[currentChar.data.chatPage].supaMemoryData && currentChar.data.chats[currentChar.data.chatPage].supaMemoryData.length > 4}
|
|
<span class="text-neutral-200">{language.SuperMemory}</span>
|
|
<TextAreaInput margin="both" autocomplete="off" bind:value={currentChar.data.chats[currentChar.data.chatPage].supaMemoryData}></TextAreaInput>
|
|
{/if}
|
|
{#if $DataBase.showUnrecommended || currentChar.data.personality.length > 3}
|
|
<span class="text-neutral-200">{language.personality} <Help key="personality" unrecommended/></span>
|
|
<TextAreaInput margin="both" autocomplete="off" bind:value={currentChar.data.personality}></TextAreaInput>
|
|
{/if}
|
|
{#if $DataBase.showUnrecommended || currentChar.data.scenario.length > 3}
|
|
<span class="text-neutral-200">{language.scenario} <Help key="scenario" unrecommended/></span>
|
|
<TextAreaInput margin="both" autocomplete="off" bind:value={currentChar.data.scenario}></TextAreaInput>
|
|
{/if}
|
|
|
|
<span class="text-neutral-200 mt-2">{language.backgroundHTML} <Help key="backgroundHTML" /></span>
|
|
<TextAreaInput margin="both" autocomplete="off" bind:value={currentChar.data.backgroundHTML}></TextAreaInput>
|
|
|
|
<span class="text-neutral-200">{language.creator}</span>
|
|
<TextInput size="sm" autocomplete="off" bind:value={currentChar.data.additionalData.creator} />
|
|
|
|
<span class="text-neutral-200">{language.CharVersion}</span>
|
|
<TextInput size="sm" bind:value={currentChar.data.additionalData.character_version}/>
|
|
|
|
<span class="text-neutral-200 mt-2">{language.altGreet}</span>
|
|
<div class="w-full max-w-full border border-selected rounded-md p-2">
|
|
<table class="contain w-full max-w-full tabler mt-2">
|
|
<tr>
|
|
<th class="font-medium">{language.value}</th>
|
|
<th class="font-medium cursor-pointer w-10">
|
|
<button class="hover:text-green-500" on:click={() => {
|
|
if(currentChar.type === 'character'){
|
|
let alternateGreetings = currentChar.data.alternateGreetings
|
|
alternateGreetings.push('')
|
|
currentChar.data.alternateGreetings = alternateGreetings
|
|
}
|
|
}}>
|
|
<PlusIcon />
|
|
</button>
|
|
</th>
|
|
</tr>
|
|
{#if currentChar.data.alternateGreetings.length === 0}
|
|
<tr>
|
|
<div class="text-gray-500"> No Messages</div>
|
|
</tr>
|
|
{/if}
|
|
{#each currentChar.data.alternateGreetings as bias, i}
|
|
<tr>
|
|
<td class="font-medium truncate">
|
|
<TextAreaInput bind:value={currentChar.data.alternateGreetings[i]} placeholder="..." />
|
|
</td>
|
|
<th class="font-medium cursor-pointer w-10">
|
|
<button class="hover:text-green-500" on:click={() => {
|
|
if(currentChar.type === 'character'){
|
|
currentChar.data.firstMsgIndex = -1
|
|
let alternateGreetings = currentChar.data.alternateGreetings
|
|
alternateGreetings.splice(i, 1)
|
|
currentChar.data.alternateGreetings = alternateGreetings
|
|
}
|
|
}}>
|
|
<TrashIcon />
|
|
</button>
|
|
</th>
|
|
</tr>
|
|
{/each}
|
|
</table>
|
|
</div>
|
|
|
|
<span class="text-neutral-200 mt-2">{language.additionalAssets} <Help key="additionalAssets" /></span>
|
|
<div class="w-full max-w-full border border-selected rounded-md p-2">
|
|
<table class="contain w-full max-w-full tabler mt-2">
|
|
<tr>
|
|
<th class="font-medium">{language.value}</th>
|
|
<th class="font-medium cursor-pointer w-10">
|
|
<button class="hover:text-green-500" on:click={async () => {
|
|
if(currentChar.type === 'character'){
|
|
const da = await selectMultipleFile(['png', 'webp', 'mp4', 'mp3', 'gif'])
|
|
currentChar.data.additionalAssets = currentChar.data.additionalAssets ?? []
|
|
if(!da){
|
|
return
|
|
}
|
|
for(const f of da){
|
|
console.log(f)
|
|
const img = f.data
|
|
const name = f.name
|
|
const extension = name.split('.').pop().toLowerCase()
|
|
const imgp = await saveAsset(img,'', extension)
|
|
currentChar.data.additionalAssets.push([name, imgp, extension])
|
|
currentChar.data.additionalAssets = currentChar.data.additionalAssets
|
|
}
|
|
}
|
|
}}>
|
|
<PlusIcon />
|
|
</button>
|
|
</th>
|
|
</tr>
|
|
{#if (!currentChar.data.additionalAssets) || currentChar.data.additionalAssets.length === 0}
|
|
<tr>
|
|
<div class="text-gray-500"> No Assets</div>
|
|
</tr>
|
|
{:else}
|
|
{#each currentChar.data.additionalAssets as assets, i}
|
|
<tr>
|
|
<td class="font-medium truncate">
|
|
{#if assetFilePath[i] && database.useAdditionalAssetsPreview}
|
|
{#if assetFileExtensions[i] === 'mp4'}
|
|
<!-- svelte-ignore a11y-media-has-caption -->
|
|
<video controls class="mt-2 px-2 w-full m-1 rounded-md"><source src={assetFilePath[i]} type="video/mp4"></video>
|
|
{:else if assetFileExtensions[i] === 'mp3'}
|
|
<audio controls class="mt-2 px-2 w-full h-16 m-1 rounded-md" loop><source src={assetFilePath[i]} type="audio/mpeg"></audio>
|
|
{:else}
|
|
<img src={assetFilePath[i]} class="w-16 h-16 m-1 rounded-md" alt={assets[0]}/>
|
|
{/if}
|
|
{/if}
|
|
<TextInput size="sm" marginBottom bind:value={currentChar.data.additionalAssets[i][0]} placeholder="..." />
|
|
</td>
|
|
|
|
<th class="font-medium cursor-pointer w-10">
|
|
<button class="hover:text-green-500" on:click={() => {
|
|
if(currentChar.type === 'character'){
|
|
currentChar.data.firstMsgIndex = -1
|
|
let additionalAssets = currentChar.data.additionalAssets
|
|
additionalAssets.splice(i, 1)
|
|
currentChar.data.additionalAssets = additionalAssets
|
|
}
|
|
}}>
|
|
<TrashIcon />
|
|
</button>
|
|
</th>
|
|
</tr>
|
|
{/each}
|
|
{/if}
|
|
</table>
|
|
</div>
|
|
|
|
{#if $DataBase.showUnrecommended || currentChar.data.utilityBot}
|
|
<div class="flex items-center mt-4">
|
|
<Check bind:check={currentChar.data.utilityBot} name={language.utilityBot}/>
|
|
<span> <Help key="utilityBot" unrecommended name={language.utilityBot}/></span>
|
|
</div>
|
|
{/if}
|
|
|
|
{#if currentChar.data.license !== 'CC BY-NC-SA 4.0'
|
|
&& currentChar.data.license !== 'CC BY-SA 4.0'
|
|
&& currentChar.data.license !== 'CC BY-ND 4.0'
|
|
&& currentChar.data.license !== 'CC BY-NC-ND 4.0'
|
|
}
|
|
<Button size="lg" on:click={async () => {
|
|
exportChar($selectedCharID)
|
|
}} className="mt-2">{language.exportCharacter}</Button>
|
|
{/if}
|
|
|
|
{#if currentChar.data.license !== 'CC BY-NC-SA 4.0'
|
|
&& currentChar.data.license !== 'CC BY-SA 4.0'
|
|
}
|
|
<Button size="lg" on:click={async () => {
|
|
openHubUpload = true
|
|
}} className="mt-2">{language.shareCloud}</Button>
|
|
{/if}
|
|
|
|
{#if openHubUpload}
|
|
<RealmUpload bind:char={currentChar.data} close={() => {openHubUpload=false}}/>
|
|
{/if}
|
|
{:else}
|
|
{#if currentChar.data.chats[currentChar.data.chatPage].supaMemoryData && currentChar.data.chats[currentChar.data.chatPage].supaMemoryData.length > 4}
|
|
<span class="text-neutral-200">{language.SuperMemory}</span>
|
|
<TextAreaInput margin="both" autocomplete="off" bind:value={currentChar.data.chats[currentChar.data.chatPage].supaMemoryData}></TextAreaInput>
|
|
{/if}
|
|
{#if $DataBase.useExperimental}
|
|
<div class="flex mb-2 items-center">
|
|
<Check bind:check={currentChar.data.useCharacterLore} name={language.useCharLorebook}/>
|
|
<Help key="experimental" name={language.useCharLorebook}/>
|
|
</div>
|
|
{/if}
|
|
{/if}
|
|
<Button on:click={async () => {
|
|
const conf = await alertConfirm(language.removeConfirm + currentChar.data.name)
|
|
if(!conf){
|
|
return
|
|
}
|
|
const conf2 = await alertConfirm(language.removeConfirm2 + currentChar.data.name)
|
|
if(!conf2){
|
|
return
|
|
}
|
|
let chars = $DataBase.characters
|
|
chars.splice($selectedCharID, 1)
|
|
checkCharOrder()
|
|
$selectedCharID = -1
|
|
$DataBase.characters = chars
|
|
|
|
}} className="mt-2" size="sm">{ currentChar.type === 'group' ? language.removeGroup : language.removeCharacter}</Button>
|
|
{/if}
|
|
|
|
|
|
<style>
|
|
|
|
.tabler {
|
|
table-layout: fixed;
|
|
}
|
|
|
|
.tabler td {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.char-grid{
|
|
display: grid;
|
|
grid-template-columns: auto 1fr auto;
|
|
}
|
|
</style> |