mirror of
https://github.com/open-webui/open-webui
synced 2024-11-16 21:42:58 +00:00
fix: task model options
This commit is contained in:
parent
ec36493d61
commit
b870fd1118
@ -313,12 +313,10 @@
|
|||||||
placeholder={$i18n.t('Select a model')}
|
placeholder={$i18n.t('Select a model')}
|
||||||
>
|
>
|
||||||
<option value="" selected>{$i18n.t('Current Model')}</option>
|
<option value="" selected>{$i18n.t('Current Model')}</option>
|
||||||
{#each $models as model}
|
{#each $models.filter((m) => m.owned_by === 'ollama') as model}
|
||||||
{#if model.size != null}
|
<option value={model.id} class="bg-gray-100 dark:bg-gray-700">
|
||||||
<option value={model.name} class="bg-gray-100 dark:bg-gray-700">
|
{model.name}
|
||||||
{model.name + ' (' + (model.size / 1024 ** 3).toFixed(1) + ' GB)'}
|
|
||||||
</option>
|
</option>
|
||||||
{/if}
|
|
||||||
{/each}
|
{/each}
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
@ -332,11 +330,9 @@
|
|||||||
>
|
>
|
||||||
<option value="" selected>{$i18n.t('Current Model')}</option>
|
<option value="" selected>{$i18n.t('Current Model')}</option>
|
||||||
{#each $models as model}
|
{#each $models as model}
|
||||||
{#if model.name !== 'hr'}
|
<option value={model.id} class="bg-gray-100 dark:bg-gray-700">
|
||||||
<option value={model.name} class="bg-gray-100 dark:bg-gray-700">
|
|
||||||
{model.name}
|
{model.name}
|
||||||
</option>
|
</option>
|
||||||
{/if}
|
|
||||||
{/each}
|
{/each}
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user