mirror of
https://github.com/open-webui/open-webui
synced 2024-11-09 02:00:03 +00:00
72 lines
1.9 KiB
Svelte
72 lines
1.9 KiB
Svelte
<script lang="ts">
|
|
import { onMount } from 'svelte';
|
|
|
|
export let models = [];
|
|
export let modelfiles = [];
|
|
|
|
let modelfile = null;
|
|
let selectedModelIdx = 0;
|
|
|
|
$: modelfile =
|
|
models[selectedModelIdx] in modelfiles ? modelfiles[models[selectedModelIdx]] : null;
|
|
|
|
$: if (models.length > 0) {
|
|
selectedModelIdx = models.length - 1;
|
|
}
|
|
</script>
|
|
|
|
{#if models.length > 0}
|
|
<div class="m-auto text-center max-w-md pb-56 px-2">
|
|
<div class="flex justify-center mt-8">
|
|
<div class="flex -space-x-10">
|
|
{#each models as model, modelIdx}
|
|
<button
|
|
on:click={() => {
|
|
selectedModelIdx = modelIdx;
|
|
}}
|
|
>
|
|
{#if model in modelfiles}
|
|
<img
|
|
src={modelfiles[model]?.imageUrl ?? './favicon.png'}
|
|
alt="modelfile"
|
|
class=" w-20 mb-2 rounded-full {models.length > 1
|
|
? ' border-[5px] border-white dark:border-gray-900'
|
|
: ''}"
|
|
draggable="false"
|
|
/>
|
|
{:else}
|
|
<img
|
|
src={models.length === 1 ? '/favicon.png' : '/favicon.png'}
|
|
class=" w-20 mb-2 {models.length === 1
|
|
? ''
|
|
: 'border-[5px] border-white dark:border-gray-900'} rounded-full"
|
|
alt="ollama"
|
|
draggable="false"
|
|
/>
|
|
{/if}
|
|
</button>
|
|
{/each}
|
|
</div>
|
|
</div>
|
|
<div class=" mt-2 text-2xl text-gray-800 dark:text-gray-100 font-semibold">
|
|
{#if modelfile}
|
|
<span class=" capitalize">
|
|
{modelfile.title}
|
|
</span>
|
|
<div class="mt-0.5 text-base font-normal text-gray-600 dark:text-gray-400">
|
|
{modelfile.desc}
|
|
</div>
|
|
{#if modelfile.user}
|
|
<div class="mt-0.5 text-sm font-normal text-gray-500 dark:text-gray-500">
|
|
By <a href="https://ollamahub.com/m/{modelfile.user.username}"
|
|
>{modelfile.user.name ? modelfile.user.name : `@${modelfile.user.username}`}</a
|
|
>
|
|
</div>
|
|
{/if}
|
|
{:else}
|
|
How can I help you today?
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
{/if}
|