diff --git a/src/lib/components/admin/Settings/Evaluations.svelte b/src/lib/components/admin/Settings/Evaluations.svelte index 805d5fc2d..cf003504c 100644 --- a/src/lib/components/admin/Settings/Evaluations.svelte +++ b/src/lib/components/admin/Settings/Evaluations.svelte @@ -103,10 +103,12 @@
{#if evaluationConfig !== null}
-
{$i18n.t('General Settings')}
+
+
{$i18n.t('General')}
-
-
+
+ +
{$i18n.t('Arena Models')}
@@ -116,46 +118,50 @@
{#if evaluationConfig.ENABLE_EVALUATION_ARENA_MODELS} -
- -
-
{$i18n.t('Manage Arena Models')}
- -
- - - -
-
- -
- {#if (evaluationConfig?.EVALUATION_ARENA_MODELS ?? []).length > 0} - {#each evaluationConfig.EVALUATION_ARENA_MODELS as model, index} - { - editModelHandler(e.detail, index); - }} - on:delete={(e) => { - deleteModelHandler(index); - }} - /> - {/each} - {:else} -
- {$i18n.t( - `Using the default arena model with all models. Click the plus button to add custom models.` - )} +
+
+
+ {$i18n.t('Manage')}
- {/if} + +
+ + + +
+
+ +
+ +
+ {#if (evaluationConfig?.EVALUATION_ARENA_MODELS ?? []).length > 0} + {#each evaluationConfig.EVALUATION_ARENA_MODELS as model, index} + { + editModelHandler(e.detail, index); + }} + on:delete={(e) => { + deleteModelHandler(index); + }} + /> + {/each} + {:else} +
+ {$i18n.t( + `Using the default arena model with all models. Click the plus button to add custom models.` + )} +
+ {/if} +
{/if}