open-webui/src/lib/components/admin/Evaluations.svelte

223 lines
6.7 KiB
Svelte
Raw Normal View History

2024-10-22 10:16:48 +00:00
<script lang="ts">
import { onMount, getContext } from 'svelte';
2024-10-23 03:14:10 +00:00
import { models } from '$lib/stores';
2024-10-23 05:55:34 +00:00
import GarbageBin from '../icons/GarbageBin.svelte';
import FeedbackMenu from './Evaluations/FeedbackMenu.svelte';
import EllipsisHorizontal from '../icons/EllipsisHorizontal.svelte';
import { getAllFeedbacks } from '$lib/apis/evaluations';
2024-10-22 10:16:48 +00:00
const i18n = getContext('i18n');
2024-10-23 03:14:10 +00:00
let rankedModels = [];
2024-10-23 05:55:34 +00:00
let feedbacks = [];
2024-10-23 03:14:10 +00:00
2024-10-23 05:55:34 +00:00
let loaded = false;
onMount(async () => {
feedbacks = await getAllFeedbacks(localStorage.token);
2024-10-23 03:14:10 +00:00
rankedModels = $models
.filter((m) => m?.owned_by !== 'arena' && (m?.info?.meta?.hidden ?? false) !== true)
.map((model) => {
return {
...model,
2024-10-23 05:55:34 +00:00
ranking: '-',
2024-10-23 03:14:10 +00:00
rating: '-',
stats: {
won: '-',
draw: '-',
lost: '-'
}
};
})
.sort((a, b) => {
// Handle sorting by rating ('-' goes to the end)
if (a.rating === '-' && b.rating !== '-') return 1;
if (b.rating === '-' && a.rating !== '-') return -1;
// If both have ratings (non '-'), sort by rating numerically (descending)
if (a.rating !== '-' && b.rating !== '-') return b.rating - a.rating;
// If both ratings are '-', sort alphabetically (by 'name')
return a.name.localeCompare(b.name);
});
2024-10-23 05:55:34 +00:00
loaded = true;
2024-10-22 10:16:48 +00:00
});
</script>
{#if loaded}
2024-10-23 05:55:34 +00:00
<div class="mt-0.5 mb-2 gap-1 flex flex-col md:flex-row justify-between">
2024-10-22 10:16:48 +00:00
<div class="flex md:self-center text-lg font-medium px-0.5">
{$i18n.t('Leaderboard')}
2024-10-23 03:14:10 +00:00
<div class="flex self-center w-[1px] h-6 mx-2.5 bg-gray-50 dark:bg-gray-850" />
<span class="text-lg font-medium text-gray-500 dark:text-gray-300">{rankedModels.length}</span
>
</div>
</div>
<div
class="scrollbar-hidden relative whitespace-nowrap overflow-x-auto max-w-full rounded pt-0.5"
>
2024-10-23 05:55:34 +00:00
{#if (rankedModels ?? []).length === 0}
<div class="text-center text-xs text-gray-500 dark:text-gray-400 py-1">
{$i18n.t('No models found')}
</div>
{:else}
<table
class="w-full text-sm text-left text-gray-500 dark:text-gray-400 table-auto max-w-full rounded"
2024-10-23 03:14:10 +00:00
>
2024-10-23 05:55:34 +00:00
<thead
class="text-xs text-gray-700 uppercase bg-gray-50 dark:bg-gray-850 dark:text-gray-400 -translate-y-0.5"
>
<tr class="">
<th scope="col" class="px-3 py-1.5 cursor-pointer select-none w-3">
{$i18n.t('RK')}
</th>
<th scope="col" class="px-3 py-1.5 cursor-pointer select-none">
{$i18n.t('Model')}
</th>
<th scope="col" class="px-3 py-1.5 text-right cursor-pointer select-none w-fit">
{$i18n.t('Rating')}
</th>
<th scope="col" class="px-3 py-1.5 text-right cursor-pointer select-none w-fit">
{$i18n.t('Won')}
</th>
<th scope="col" class="px-3 py-1.5 text-right cursor-pointer select-none w-fit">
{$i18n.t('Draw')}
</th>
<th scope="col" class="px-3 py-1.5 text-right cursor-pointer select-none w-fit">
{$i18n.t('Lost')}
</th>
</tr>
</thead>
<tbody class="">
{#each rankedModels as model (model.id)}
<tr class="bg-white dark:bg-gray-900 dark:border-gray-850 text-xs">
<td class="px-3 py-1.5 text-left font-medium text-gray-900 dark:text-white w-fit">
<div class=" line-clamp-1">
{model.ranking}
2024-10-23 03:14:10 +00:00
</div>
2024-10-23 05:55:34 +00:00
</td>
<td class="px-3 py-1.5 flex flex-col justify-center">
<div class="flex items-center gap-2">
<div class="flex-shrink-0">
<img
src={model?.info?.meta?.profile_image_url ?? '/favicon.png'}
alt={model.name}
class="size-5 rounded-full object-cover shrink-0"
/>
</div>
<div class="font-medium text-gray-800 dark:text-gray-200 pr-4">
{model.name}
</div>
2024-10-23 03:14:10 +00:00
</div>
2024-10-23 05:55:34 +00:00
</td>
<td class="px-3 py-1.5 text-right font-medium text-gray-900 dark:text-white w-max">
{model.rating}
</td>
<td class=" px-3 py-1.5 text-right font-semibold text-green-500">
{model.stats.won}
</td>
<td class=" px-3 py-1.5 text-right font-semibold">
{model.stats.draw}
</td>
<td class="px-3 py-1.5 text-right font-semibold text-red-500">
{model.stats.lost}
</td>
</tr>
{/each}
</tbody>
</table>
{/if}
2024-10-23 03:14:10 +00:00
</div>
<div class="pb-4"></div>
2024-10-23 05:55:34 +00:00
<div class="mt-0.5 mb-2 gap-1 flex flex-col md:flex-row justify-between">
2024-10-23 03:14:10 +00:00
<div class="flex md:self-center text-lg font-medium px-0.5">
2024-10-23 05:55:34 +00:00
{$i18n.t('Feedback History')}
2024-10-22 10:16:48 +00:00
</div>
</div>
2024-10-23 03:14:10 +00:00
2024-10-23 05:55:34 +00:00
<div
class="scrollbar-hidden relative whitespace-nowrap overflow-x-auto max-w-full rounded pt-0.5"
>
{#if (feedbacks ?? []).length === 0}
<div class="text-center text-xs text-gray-500 dark:text-gray-400 py-1">
{$i18n.t('No feedbacks found')}
</div>
{:else}
<table
class="w-full text-sm text-left text-gray-500 dark:text-gray-400 table-auto max-w-full rounded"
>
<thead
class="text-xs text-gray-700 uppercase bg-gray-50 dark:bg-gray-850 dark:text-gray-400 -translate-y-0.5"
>
<tr class="">
<th scope="col" class="px-3 py-1.5 cursor-pointer select-none">
{$i18n.t('Models')}
</th>
<th scope="col" class="px-3 py-1.5 text-right cursor-pointer select-none w-fit">
{$i18n.t('Result')}
</th>
<th scope="col" class="px-3 py-1.5 text-right cursor-pointer select-none w-0">
{$i18n.t('User')}
</th>
<th scope="col" class="px-3 py-1.5 text-right cursor-pointer select-none w-0">
{$i18n.t('Created At')}
</th>
<th scope="col" class="px-3 py-1.5 text-right cursor-pointer select-none w-0"> </th>
</tr>
</thead>
<tbody class="">
{#each feedbacks as feedback (feedback.id)}
<tr class="bg-white dark:bg-gray-900 dark:border-gray-850 text-xs">
<td class="px-3 py-1 flex flex-col">
<div class="flex flex-col items-start gap-1">
<div class="font-medium text-gray-600 dark:text-gray-400">
{model.name}
</div>
<div class="font-medium text-gray-600 dark:text-gray-400">
{model.name}
</div>
</div>
</td>
<td class="px-3 py-1 text-right font-medium text-gray-900 dark:text-white w-max">
{model.rating}
</td>
<td class=" px-3 py-1 text-right font-semibold"> {model.stats.won} </td>
<td class=" px-3 py-1 text-right font-semibold">
{model.stats.draw}
</td>
<td class=" px-3 py-1 text-right font-semibold">
<FeedbackMenu>
<button
class="self-center w-fit text-sm p-1.5 dark:text-gray-300 dark:hover:text-white hover:bg-black/5 dark:hover:bg-white/5 rounded-xl"
>
<EllipsisHorizontal />
</button>
</FeedbackMenu>
</td>
</tr>
{/each}
</tbody>
</table>
{/if}
</div>
2024-10-23 03:14:10 +00:00
<div class="pb-8"></div>
2024-10-22 10:16:48 +00:00
{/if}