This commit is contained in:
Timothy Jaeryang Baek 2025-02-11 21:03:38 -08:00
parent 8906a2e260
commit 627ed7c9ce

View File

@ -73,7 +73,7 @@
{#if config.CODE_INTERPRETER_ENGINE === 'jupyter'} {#if config.CODE_INTERPRETER_ENGINE === 'jupyter'}
<div class="mt-1 flex flex-col gap-1.5 mb-1 w-full"> <div class="mt-1 flex flex-col gap-1.5 mb-1 w-full">
<div class="text-xs font-medium"> <div class="text-xs font-medium">
{$i18n.t('Jupyter Kernel Gateway URL')} {$i18n.t('Jupyter URL')}
</div> </div>
<div class="flex w-full"> <div class="flex w-full">
@ -81,7 +81,7 @@
<input <input
class="w-full text-sm py-0.5 placeholder:text-gray-300 dark:placeholder:text-gray-700 bg-transparent outline-none" class="w-full text-sm py-0.5 placeholder:text-gray-300 dark:placeholder:text-gray-700 bg-transparent outline-none"
type="text" type="text"
placeholder={$i18n.t('Enter Jupyter Kernel Gateway URL')} placeholder={$i18n.t('Enter Jupyter URL')}
bind:value={config.CODE_INTERPRETER_JUPYTER_URL} bind:value={config.CODE_INTERPRETER_JUPYTER_URL}
autocomplete="off" autocomplete="off"
/> />
@ -91,7 +91,7 @@
<div class="mt-1 flex gap-2 mb-1 w-full items-center justify-between"> <div class="mt-1 flex gap-2 mb-1 w-full items-center justify-between">
<div class="text-xs font-medium"> <div class="text-xs font-medium">
{$i18n.t('Jupyter Kernel Gateway Auth')} {$i18n.t('Jupyter Auth')}
</div> </div>
<div> <div>
@ -113,14 +113,14 @@
{#if config.CODE_INTERPRETER_JUPYTER_AUTH === 'password'} {#if config.CODE_INTERPRETER_JUPYTER_AUTH === 'password'}
<SensitiveInput <SensitiveInput
type="text" type="text"
placeholder={$i18n.t('Enter Jupyter Kernel Gateway Password')} placeholder={$i18n.t('Enter Jupyter Password')}
bind:value={config.CODE_INTERPRETER_JUPYTER_AUTH_PASSWORD} bind:value={config.CODE_INTERPRETER_JUPYTER_AUTH_PASSWORD}
autocomplete="off" autocomplete="off"
/> />
{:else} {:else}
<SensitiveInput <SensitiveInput
type="text" type="text"
placeholder={$i18n.t('Enter Jupyter Kernel Gateway Token')} placeholder={$i18n.t('Enter Jupyter Token')}
bind:value={config.CODE_INTERPRETER_JUPYTER_AUTH_TOKEN} bind:value={config.CODE_INTERPRETER_JUPYTER_AUTH_TOKEN}
autocomplete="off" autocomplete="off"
/> />