[feat] added hypamemory toggle

This commit is contained in:
kwaroran
2023-06-29 00:59:08 +09:00
parent e6dc0dcb06
commit 68fbb99c42
4 changed files with 14 additions and 12 deletions

View File

@@ -75,4 +75,9 @@
{#if $DataBase.supaMemoryType !== 'none'}
<span class="text-neutral-200">{language.SuperMemory} Prompt</span>
<input class="text-neutral-200 mb-4 p-2 bg-transparent input-text focus:bg-selected text-sm"bind:value={$DataBase.supaMemoryPrompt} placeholder="recommended to leave it blank to use default">
{/if}
{#if ($DataBase.supaMemoryType === 'davinci' || $DataBase.supaMemoryType === 'curie') && $DataBase.useExperimental}
<div class="flex">
<Check bind:check={$DataBase.hypaMemory} name='Able HypaMemory'/> <Help key="experimental" />
</div>
{/if}