|
@@ -526,7 +526,7 @@
|
|
|
<option value={null} class=" text-gray-900"
|
|
|
>{$i18n.t('Select a base model')}</option
|
|
|
>
|
|
|
- {#each $models.filter((m) => (model ? m.id !== model.id : true) && !m?.preset && m?.owned_by !== 'arena') as model}
|
|
|
+ {#each $models.filter((m) => (model ? m.id !== model.id : true) && !m?.preset && m?.owned_by !== 'arena' && !(m?.direct ?? false)) as model}
|
|
|
<option value={model.id} class=" text-gray-900">{model.name}</option>
|
|
|
{/each}
|
|
|
</select>
|