mirror of
https://github.com/open-webui/open-webui
synced 2024-11-16 13:40:55 +00:00
refac: responseMessage
This commit is contained in:
parent
dac9634242
commit
ce3d582e61
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
const dispatch = createEventDispatcher();
|
const dispatch = createEventDispatcher();
|
||||||
|
|
||||||
import { config, settings } from '$lib/stores';
|
import { config, models, settings } from '$lib/stores';
|
||||||
import { synthesizeOpenAISpeech } from '$lib/apis/audio';
|
import { synthesizeOpenAISpeech } from '$lib/apis/audio';
|
||||||
import { imageGenerations } from '$lib/apis/images';
|
import { imageGenerations } from '$lib/apis/images';
|
||||||
import {
|
import {
|
||||||
@ -34,7 +34,6 @@
|
|||||||
import RateComment from './RateComment.svelte';
|
import RateComment from './RateComment.svelte';
|
||||||
import CitationsModal from '$lib/components/chat/Messages/CitationsModal.svelte';
|
import CitationsModal from '$lib/components/chat/Messages/CitationsModal.svelte';
|
||||||
|
|
||||||
export let modelfiles = [];
|
|
||||||
export let message;
|
export let message;
|
||||||
export let siblings;
|
export let siblings;
|
||||||
|
|
||||||
@ -52,6 +51,9 @@
|
|||||||
export let continueGeneration: Function;
|
export let continueGeneration: Function;
|
||||||
export let regenerateResponse: Function;
|
export let regenerateResponse: Function;
|
||||||
|
|
||||||
|
let model = null;
|
||||||
|
$: model = $models.find((m) => m.id === message.model);
|
||||||
|
|
||||||
let edit = false;
|
let edit = false;
|
||||||
let editedContent = '';
|
let editedContent = '';
|
||||||
let editTextAreaElement: HTMLTextAreaElement;
|
let editTextAreaElement: HTMLTextAreaElement;
|
||||||
@ -338,17 +340,13 @@
|
|||||||
dir={$settings.chatDirection}
|
dir={$settings.chatDirection}
|
||||||
>
|
>
|
||||||
<ProfileImage
|
<ProfileImage
|
||||||
src={modelfiles[message.model]?.imageUrl ??
|
src={model?.info?.meta?.profile_image_url ??
|
||||||
($i18n.language === 'dg-DG' ? `/doge.png` : `${WEBUI_BASE_URL}/static/favicon.png`)}
|
($i18n.language === 'dg-DG' ? `/doge.png` : `${WEBUI_BASE_URL}/static/favicon.png`)}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<div class="w-full overflow-hidden pl-1">
|
<div class="w-full overflow-hidden pl-1">
|
||||||
<Name>
|
<Name>
|
||||||
{#if message.model in modelfiles}
|
{model.name}
|
||||||
{modelfiles[message.model]?.title}
|
|
||||||
{:else}
|
|
||||||
{message.modelName ? ` ${message.modelName}` : message.model ? ` ${message.model}` : ''}
|
|
||||||
{/if}
|
|
||||||
|
|
||||||
{#if message.timestamp}
|
{#if message.timestamp}
|
||||||
<span
|
<span
|
||||||
|
Loading…
Reference in New Issue
Block a user