|
@@ -3,6 +3,7 @@
|
|
|
|
|
|
import { createEventDispatcher, onMount, getContext } from 'svelte';
|
|
import { createEventDispatcher, onMount, getContext } from 'svelte';
|
|
import { config, models } from '$lib/stores';
|
|
import { config, models } from '$lib/stores';
|
|
|
|
+ import Tags from '$lib/components/common/Tags.svelte';
|
|
|
|
|
|
const i18n = getContext('i18n');
|
|
const i18n = getContext('i18n');
|
|
|
|
|
|
@@ -14,24 +15,28 @@
|
|
let LIKE_REASONS = [];
|
|
let LIKE_REASONS = [];
|
|
let DISLIKE_REASONS = [];
|
|
let DISLIKE_REASONS = [];
|
|
|
|
|
|
|
|
+ let tags = [];
|
|
|
|
+
|
|
function loadReasons() {
|
|
function loadReasons() {
|
|
LIKE_REASONS = [
|
|
LIKE_REASONS = [
|
|
- $i18n.t('Accurate information'),
|
|
|
|
- $i18n.t('Followed instructions perfectly'),
|
|
|
|
- $i18n.t('Showcased creativity'),
|
|
|
|
- $i18n.t('Positive attitude'),
|
|
|
|
- $i18n.t('Attention to detail'),
|
|
|
|
- $i18n.t('Thorough explanation'),
|
|
|
|
- $i18n.t('Other')
|
|
|
|
|
|
+ 'accurate_information',
|
|
|
|
+ 'followed_instructions_perfectly',
|
|
|
|
+ 'showcased_creativity',
|
|
|
|
+ 'positive_attitude',
|
|
|
|
+ 'attention_to_detail',
|
|
|
|
+ 'thorough_explanation',
|
|
|
|
+ 'other'
|
|
];
|
|
];
|
|
|
|
|
|
DISLIKE_REASONS = [
|
|
DISLIKE_REASONS = [
|
|
- $i18n.t("Don't like the style"),
|
|
|
|
- $i18n.t('Not factually correct'),
|
|
|
|
- $i18n.t("Didn't fully follow instructions"),
|
|
|
|
- $i18n.t("Refused when it shouldn't have"),
|
|
|
|
- $i18n.t('Being lazy'),
|
|
|
|
- $i18n.t('Other')
|
|
|
|
|
|
+ 'dont_like_the_style',
|
|
|
|
+ 'too_verbose',
|
|
|
|
+ 'not_helpful',
|
|
|
|
+ 'not_factually_correct',
|
|
|
|
+ 'didnt_fully_follow_instructions',
|
|
|
|
+ 'refused_when_it_shouldnt_have',
|
|
|
|
+ 'being_lazy',
|
|
|
|
+ 'other'
|
|
];
|
|
];
|
|
}
|
|
}
|
|
|
|
|
|
@@ -50,6 +55,9 @@
|
|
onMount(() => {
|
|
onMount(() => {
|
|
selectedReason = message?.annotation?.reason ?? '';
|
|
selectedReason = message?.annotation?.reason ?? '';
|
|
comment = message?.annotation?.comment ?? '';
|
|
comment = message?.annotation?.comment ?? '';
|
|
|
|
+ tags = (message?.annotation?.tags ?? []).map((tag) => ({
|
|
|
|
+ name: tag
|
|
|
|
+ }));
|
|
|
|
|
|
if (message?.arena) {
|
|
if (message?.arena) {
|
|
selectedModel = $models.find((m) => m.id === message.selectedModelId);
|
|
selectedModel = $models.find((m) => m.id === message.selectedModelId);
|
|
@@ -66,14 +74,15 @@
|
|
const saveHandler = () => {
|
|
const saveHandler = () => {
|
|
console.log('saveHandler');
|
|
console.log('saveHandler');
|
|
|
|
|
|
- if (!selectedReason) {
|
|
|
|
- toast.error($i18n.t('Please select a reason'));
|
|
|
|
- return;
|
|
|
|
- }
|
|
|
|
|
|
+ // if (!selectedReason) {
|
|
|
|
+ // toast.error($i18n.t('Please select a reason'));
|
|
|
|
+ // return;
|
|
|
|
+ // }
|
|
|
|
|
|
dispatch('save', {
|
|
dispatch('save', {
|
|
reason: selectedReason,
|
|
reason: selectedReason,
|
|
- comment: comment
|
|
|
|
|
|
+ comment: comment,
|
|
|
|
+ tags: tags
|
|
});
|
|
});
|
|
|
|
|
|
toast.success($i18n.t('Thanks for your feedback!'));
|
|
toast.success($i18n.t('Thanks for your feedback!'));
|
|
@@ -82,7 +91,7 @@
|
|
</script>
|
|
</script>
|
|
|
|
|
|
{#if message?.arena}
|
|
{#if message?.arena}
|
|
- <div class="text-xs font-medium translate-y-1.5">
|
|
|
|
|
|
+ <div class="text-xs font-medium pt-1.5 -mb-0.5">
|
|
{$i18n.t('This response was generated by "{{model}}"', {
|
|
{$i18n.t('This response was generated by "{{model}}"', {
|
|
model: selectedModel ? (selectedModel?.name ?? selectedModel.id) : message.selectedModelId
|
|
model: selectedModel ? (selectedModel?.name ?? selectedModel.id) : message.selectedModelId
|
|
})}
|
|
})}
|
|
@@ -115,10 +124,10 @@
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{#if reasons.length > 0}
|
|
{#if reasons.length > 0}
|
|
- <div class="flex flex-wrap gap-2 text-sm mt-2.5">
|
|
|
|
|
|
+ <div class="flex flex-wrap gap-1.5 text-sm mt-2.5">
|
|
{#each reasons as reason}
|
|
{#each reasons as reason}
|
|
<button
|
|
<button
|
|
- class="px-3.5 py-1 border border-gray-50 dark:border-gray-850 hover:bg-gray-100 dark:hover:bg-gray-850 {selectedReason ===
|
|
|
|
|
|
+ class="px-3 py-0.5 border border-gray-50 dark:border-gray-850 hover:bg-gray-100 dark:hover:bg-gray-850 {selectedReason ===
|
|
reason
|
|
reason
|
|
? 'bg-gray-200 dark:bg-gray-800'
|
|
? 'bg-gray-200 dark:bg-gray-800'
|
|
: ''} transition rounded-lg"
|
|
: ''} transition rounded-lg"
|
|
@@ -126,7 +135,37 @@
|
|
selectedReason = reason;
|
|
selectedReason = reason;
|
|
}}
|
|
}}
|
|
>
|
|
>
|
|
- {reason}
|
|
|
|
|
|
+ {#if reason === 'accurate_information'}
|
|
|
|
+ {$i18n.t('Accurate information')}
|
|
|
|
+ {:else if reason === 'followed_instructions_perfectly'}
|
|
|
|
+ {$i18n.t('Followed instructions perfectly')}
|
|
|
|
+ {:else if reason === 'showcased_creativity'}
|
|
|
|
+ {$i18n.t('Showcased creativity')}
|
|
|
|
+ {:else if reason === 'positive_attitude'}
|
|
|
|
+ {$i18n.t('Positive attitude')}
|
|
|
|
+ {:else if reason === 'attention_to_detail'}
|
|
|
|
+ {$i18n.t('Attention to detail')}
|
|
|
|
+ {:else if reason === 'thorough_explanation'}
|
|
|
|
+ {$i18n.t('Thorough explanation')}
|
|
|
|
+ {:else if reason === 'dont_like_the_style'}
|
|
|
|
+ {$i18n.t("Don't like the style")}
|
|
|
|
+ {:else if reason === 'too_verbose'}
|
|
|
|
+ {$i18n.t('Too verbose')}
|
|
|
|
+ {:else if reason === 'not_helpful'}
|
|
|
|
+ {$i18n.t('Not helpful')}
|
|
|
|
+ {:else if reason === 'not_factually_correct'}
|
|
|
|
+ {$i18n.t('Not factually correct')}
|
|
|
|
+ {:else if reason === 'didnt_fully_follow_instructions'}
|
|
|
|
+ {$i18n.t("Didn't fully follow instructions")}
|
|
|
|
+ {:else if reason === 'refused_when_it_shouldnt_have'}
|
|
|
|
+ {$i18n.t("Refused when it shouldn't have")}
|
|
|
|
+ {:else if reason === 'being_lazy'}
|
|
|
|
+ {$i18n.t('Being lazy')}
|
|
|
|
+ {:else if reason === 'other'}
|
|
|
|
+ {$i18n.t('Other')}
|
|
|
|
+ {:else}
|
|
|
|
+ {reason}
|
|
|
|
+ {/if}
|
|
</button>
|
|
</button>
|
|
{/each}
|
|
{/each}
|
|
</div>
|
|
</div>
|
|
@@ -137,22 +176,26 @@
|
|
bind:value={comment}
|
|
bind:value={comment}
|
|
class="w-full text-sm px-1 py-2 bg-transparent outline-none resize-none rounded-xl"
|
|
class="w-full text-sm px-1 py-2 bg-transparent outline-none resize-none rounded-xl"
|
|
placeholder={$i18n.t('Feel free to add specific details')}
|
|
placeholder={$i18n.t('Feel free to add specific details')}
|
|
- rows="2"
|
|
|
|
|
|
+ rows="3"
|
|
/>
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
- <div class="mt-2 gap-1.5 flex justify-end">
|
|
|
|
- <!-- {#if $config?.features.enable_community_sharing && selectedModel}
|
|
|
|
- <button
|
|
|
|
- class=" self-center px-3.5 py-2 rounded-xl text-sm font-medium bg-gray-50 hover:bg-gray-100 text-gray-800 dark:bg-gray-850 dark:hover:bg-gray-800 dark:text-white transition"
|
|
|
|
- type="button"
|
|
|
|
- on:click={() => {
|
|
|
|
- show = false;
|
|
|
|
|
|
+ <div class="mt-2 gap-1.5 flex justify-between">
|
|
|
|
+ <div class="flex items-end group">
|
|
|
|
+ <Tags
|
|
|
|
+ {tags}
|
|
|
|
+ on:delete={(e) => {
|
|
|
|
+ tags = tags.filter(
|
|
|
|
+ (tag) =>
|
|
|
|
+ tag.name.replaceAll(' ', '_').toLowerCase() !==
|
|
|
|
+ e.detail.replaceAll(' ', '_').toLowerCase()
|
|
|
|
+ );
|
|
}}
|
|
}}
|
|
- >
|
|
|
|
- {$i18n.t('Share to OpenWebUI Community')}
|
|
|
|
- </button>
|
|
|
|
- {/if} -->
|
|
|
|
|
|
+ on:add={(e) => {
|
|
|
|
+ tags = [...tags, { name: e.detail }];
|
|
|
|
+ }}
|
|
|
|
+ />
|
|
|
|
+ </div>
|
|
|
|
|
|
<button
|
|
<button
|
|
class=" bg-emerald-700 hover:bg-emerald-800 transition text-white text-sm font-medium rounded-xl px-3.5 py-1.5"
|
|
class=" bg-emerald-700 hover:bg-emerald-800 transition text-white text-sm font-medium rounded-xl px-3.5 py-1.5"
|