{ updateInterfaceHandler(); dispatch('save'); }} >
{$i18n.t('WebUI Add-ons')}
{$i18n.t('Chat Bubble UI')}
{ toggleChatBubble(); }} type="button" > {#if chatBubble === true}
{$i18n.t('On')}
{:else}
{$i18n.t('Off')}
{/if}
{$i18n.t('Title Auto-Generation')}
{ toggleTitleAutoGenerate(); }} type="button" > {#if titleAutoGenerate === true}
{$i18n.t('On')}
{:else}
{$i18n.t('Off')}
{/if}
{$i18n.t('Response AutoCopy to Clipboard')}
{ toggleResponseAutoCopy(); }} type="button" > {#if responseAutoCopy === true}
{$i18n.t('On')}
{:else}
{$i18n.t('Off')}
{/if}
{$i18n.t('Widescreen Mode')}
{ togglewidescreenMode(); }} type="button" > {#if widescreenMode === true}
{$i18n.t('On')}
{:else}
{$i18n.t('Off')}
{/if}
{$i18n.t('Display Emoji in Call')}
{ toggleEmojiInCall(); }} type="button" > {#if showEmojiInCall === true}
{$i18n.t('On')}
{:else}
{$i18n.t('Off')}
{/if}
{#if !$settings.chatBubble}
{$i18n.t('Display the username instead of You in the Chat')}
{ toggleShowUsername(); }} type="button" > {#if showUsername === true}
{$i18n.t('On')}
{:else}
{$i18n.t('Off')}
{/if}
{/if}
{$i18n.t('Fluidly stream large external response chunks')}
{ toggleSplitLargeChunks(); }} type="button" > {#if splitLargeChunks === true}
{$i18n.t('On')}
{:else}
{$i18n.t('Off')}
{/if}
{$i18n.t('Chat direction')}
{#if chatDirection === 'LTR'}
{$i18n.t('LTR')}
{:else}
{$i18n.t('RTL')}
{/if}
{$i18n.t('Default Model')}
{$i18n.t('Select a model')}
{#each $models.filter((model) => model.id) as model}
{model.name}
{/each}
{$i18n.t('Save')}