{language.otherBots}
{language.imageGeneration} {language.provider}
None
Stable Diffusion WebUI
Novel AI
Dall-E
{#if $DataBase.sdProvider === 'webui'}
You must use WebUI with --api flag
You must use WebUI without agpl license or use unmodified version with agpl license to observe the contents of the agpl license.
{#if !isTauri}
You are using web version. you must use ngrok or other tunnels to use your local webui.
{/if}
WebUI {language.providerURL}
Steps
CFG Scale
Width
Height
Sampler
{#if $DataBase.sdConfig.enable_hr === true}
denoising_strength
hr_scale
Upscaler
{/if}
{/if}
{#if $DataBase.sdProvider === 'novelai'}
Novel AI {language.providerURL}
API Key
Model
Width
Height
Sampler
Euler
Euler Ancestral
DPM++ 2S Ancestral
DPM++ 2M
DPM++ SDE
DPM++ 2S
DDIM
steps
CFG scale
{#if !$DataBase.NAII2I || $DataBase.NAIImgConfig.sampler !== 'ddim_v3'}
{/if}
{#if $DataBase.NAII2I}
Strength
{$DataBase.NAIImgConfig.strength}
Noise
{$DataBase.NAIImgConfig.noise}
Base image
{
const img = await selectSingleFile([
'jpg',
'jpeg',
'png',
'webp'
])
if(!img){
return null
}
const saveId = await saveAsset(img.data)
$DataBase.NAIImgConfig.image = saveId
}}>
{#if $DataBase.NAIImgConfig.image === ''}
{:else}
{#await getCharImage($DataBase.NAIImgConfig.image, 'css')}
{:then im}
{/await}
{/if}
{/if}
{#if $DataBase.NAIREF}
Information Extracted
{$DataBase.NAIImgConfig.InfoExtracted}
Reference Strength
{$DataBase.NAIImgConfig.RefStrength}
Reference image
{
const img = await selectSingleFile([
'jpg',
'jpeg',
'png',
'webp'
])
if(!img){
return null
}
const saveId = await saveAsset(img.data)
$DataBase.NAIImgConfig.refimage = saveId
}}>
{#if $DataBase.NAIImgConfig.refimage === ''}
{:else}
{#await getCharImage($DataBase.NAIImgConfig.refimage, 'css')}
{:then im}
{/await}
{/if}
{/if}
{/if}
{#if $DataBase.sdProvider === 'dalle'}
OpenAI API Key
Dall-E Quality
Standard
HD
{/if}
ElevenLabs API key
VOICEVOX URL
OpenAI Key
NovelAI API key
Huggingface Key
{language.emotionMethod}
Ax. Model
MiniLM-L6-v2
{language.type}
{
//@ts-ignore
const value = v.target.value
if (value === 'supaMemory'){
$DataBase.supaMemoryType = 'distilbart'
$DataBase.hanuraiEnable = false
} else if (value === 'hanuraiMemory'){
$DataBase.supaMemoryType = 'none'
$DataBase.hanuraiEnable = true
} else if (value === 'hypaV2') {
$DataBase.supaMemoryType = 'hypaV2'
$DataBase.hanuraiEnable = false
} else {
$DataBase.supaMemoryType = 'none'
$DataBase.hanuraiEnable = false
}
}}>
None
{language.SuperMemory}
{language.HypaMemory} V2
{language.hanuraiMemory}
{#if $DataBase.hanuraiEnable}
{language.hanuraiDesc}
Chunk Size
{:else if $DataBase.supaMemoryType === 'hypaV2'}
{language.hypaV2Desc}
{language.hypaChunkSize}
{language.hypaAllocatedTokens}
{:else if $DataBase.supaMemoryType !== 'none'}
{language.supaDesc}
{language.SuperMemory} {language.model}
distilbart-cnn-6-6 (Free/Local)
OpenAI 3.5 Turbo Instruct
{language.submodel}
{language.maxSupaChunkSize}
{#if $DataBase.supaMemoryType === 'davinci' || $DataBase.supaMemoryType === 'curie' || $DataBase.supaMemoryType === 'instruct35'}
{language.SuperMemory} OpenAI Key
{/if}
{#if $DataBase.supaMemoryType !== 'none'}
{language.SuperMemory} Prompt
{/if}
{#if $DataBase.hypaMemory}
{language.HypaMemory} Model
MiniLM-L6-v2 (Free / Local)
OpenAI Ada (Davinci / Curie Only)
{/if}
{/if}