mirror of
https://github.com/open-webui/open-webui
synced 2025-06-11 17:02:47 +00:00
refac
This commit is contained in:
parent
92e77d7b33
commit
e9d14601a1
@ -81,7 +81,6 @@
|
|||||||
import 'katex/dist/katex.min.css';
|
import 'katex/dist/katex.min.css';
|
||||||
|
|
||||||
import markedKatex from '$lib/utils/katex-extension';
|
import markedKatex from '$lib/utils/katex-extension';
|
||||||
|
|
||||||
const options = {
|
const options = {
|
||||||
throwOnError: false
|
throwOnError: false
|
||||||
};
|
};
|
||||||
@ -96,64 +95,10 @@
|
|||||||
}
|
}
|
||||||
})();
|
})();
|
||||||
|
|
||||||
const renderStyling = async () => {
|
$: if (message?.done ?? false) {
|
||||||
await tick();
|
renderLatex();
|
||||||
|
|
||||||
if (tooltipInstance) {
|
|
||||||
tooltipInstance[0]?.destroy();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// renderLatex();
|
|
||||||
|
|
||||||
if (message.info) {
|
|
||||||
let tooltipContent = '';
|
|
||||||
if (message.info.openai) {
|
|
||||||
tooltipContent = `prompt_tokens: ${message.info.prompt_tokens ?? 'N/A'}<br/>
|
|
||||||
completion_tokens: ${message.info.completion_tokens ?? 'N/A'}<br/>
|
|
||||||
total_tokens: ${message.info.total_tokens ?? 'N/A'}`;
|
|
||||||
} else {
|
|
||||||
tooltipContent = `response_token/s: ${
|
|
||||||
`${
|
|
||||||
Math.round(
|
|
||||||
((message.info.eval_count ?? 0) / (message.info.eval_duration / 1000000000)) * 100
|
|
||||||
) / 100
|
|
||||||
} tokens` ?? 'N/A'
|
|
||||||
}<br/>
|
|
||||||
prompt_token/s: ${
|
|
||||||
Math.round(
|
|
||||||
((message.info.prompt_eval_count ?? 0) /
|
|
||||||
(message.info.prompt_eval_duration / 1000000000)) *
|
|
||||||
100
|
|
||||||
) / 100 ?? 'N/A'
|
|
||||||
} tokens<br/>
|
|
||||||
total_duration: ${
|
|
||||||
Math.round(((message.info.total_duration ?? 0) / 1000000) * 100) / 100 ??
|
|
||||||
'N/A'
|
|
||||||
}ms<br/>
|
|
||||||
load_duration: ${
|
|
||||||
Math.round(((message.info.load_duration ?? 0) / 1000000) * 100) / 100 ?? 'N/A'
|
|
||||||
}ms<br/>
|
|
||||||
prompt_eval_count: ${message.info.prompt_eval_count ?? 'N/A'}<br/>
|
|
||||||
prompt_eval_duration: ${
|
|
||||||
Math.round(((message.info.prompt_eval_duration ?? 0) / 1000000) * 100) /
|
|
||||||
100 ?? 'N/A'
|
|
||||||
}ms<br/>
|
|
||||||
eval_count: ${message.info.eval_count ?? 'N/A'}<br/>
|
|
||||||
eval_duration: ${
|
|
||||||
Math.round(((message.info.eval_duration ?? 0) / 1000000) * 100) / 100 ?? 'N/A'
|
|
||||||
}ms<br/>
|
|
||||||
approximate_total: ${approximateToHumanReadable(message.info.total_duration)}`;
|
|
||||||
}
|
|
||||||
tooltipInstance = tippy(`#info-${message.id}`, {
|
|
||||||
content: `<span class="text-xs" id="tooltip-${message.id}">${tooltipContent}</span>`,
|
|
||||||
allowHTML: true,
|
|
||||||
theme: 'dark',
|
|
||||||
arrow: false,
|
|
||||||
offset: [0, 4]
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const renderLatex = () => {
|
const renderLatex = () => {
|
||||||
let chatMessageElements = document
|
let chatMessageElements = document
|
||||||
.getElementById(`message-${message.id}`)
|
.getElementById(`message-${message.id}`)
|
||||||
@ -845,6 +790,45 @@
|
|||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
{#if message.info}
|
{#if message.info}
|
||||||
|
<Tooltip
|
||||||
|
content={message.info.openai
|
||||||
|
? `prompt_tokens: ${message.info.prompt_tokens ?? 'N/A'}<br/>
|
||||||
|
completion_tokens: ${message.info.completion_tokens ?? 'N/A'}<br/>
|
||||||
|
total_tokens: ${message.info.total_tokens ?? 'N/A'}`
|
||||||
|
: `response_token/s: ${
|
||||||
|
`${
|
||||||
|
Math.round(
|
||||||
|
((message.info.eval_count ?? 0) /
|
||||||
|
(message.info.eval_duration / 1000000000)) *
|
||||||
|
100
|
||||||
|
) / 100
|
||||||
|
} tokens` ?? 'N/A'
|
||||||
|
}<br/>
|
||||||
|
prompt_token/s: ${
|
||||||
|
Math.round(
|
||||||
|
((message.info.prompt_eval_count ?? 0) /
|
||||||
|
(message.info.prompt_eval_duration / 1000000000)) *
|
||||||
|
100
|
||||||
|
) / 100 ?? 'N/A'
|
||||||
|
} tokens<br/>
|
||||||
|
total_duration: ${
|
||||||
|
Math.round(((message.info.total_duration ?? 0) / 1000000) * 100) / 100 ?? 'N/A'
|
||||||
|
}ms<br/>
|
||||||
|
load_duration: ${
|
||||||
|
Math.round(((message.info.load_duration ?? 0) / 1000000) * 100) / 100 ?? 'N/A'
|
||||||
|
}ms<br/>
|
||||||
|
prompt_eval_count: ${message.info.prompt_eval_count ?? 'N/A'}<br/>
|
||||||
|
prompt_eval_duration: ${
|
||||||
|
Math.round(((message.info.prompt_eval_duration ?? 0) / 1000000) * 100) / 100 ??
|
||||||
|
'N/A'
|
||||||
|
}ms<br/>
|
||||||
|
eval_count: ${message.info.eval_count ?? 'N/A'}<br/>
|
||||||
|
eval_duration: ${
|
||||||
|
Math.round(((message.info.eval_duration ?? 0) / 1000000) * 100) / 100 ?? 'N/A'
|
||||||
|
}ms<br/>
|
||||||
|
approximate_total: ${approximateToHumanReadable(message.info.total_duration)}`}
|
||||||
|
placement="top"
|
||||||
|
>
|
||||||
<Tooltip content={$i18n.t('Generation Info')} placement="bottom">
|
<Tooltip content={$i18n.t('Generation Info')} placement="bottom">
|
||||||
<button
|
<button
|
||||||
class=" {isLastMessage
|
class=" {isLastMessage
|
||||||
@ -871,6 +855,7 @@
|
|||||||
</svg>
|
</svg>
|
||||||
</button>
|
</button>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
|
</Tooltip>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
{#if !readOnly}
|
{#if !readOnly}
|
||||||
|
Loading…
Reference in New Issue
Block a user