enh: only copy text message content

This commit is contained in:
Timothy Jaeryang Baek 2025-04-12 15:11:03 -07:00
parent bdef1001ac
commit c3497da5dd
2 changed files with 9 additions and 1 deletions

View File

@ -24,7 +24,9 @@
getMessageContentParts,
sanitizeResponseContent,
createMessagesList,
formatDate
formatDate,
removeDetails,
removeAllDetails
} from '$lib/utils';
import { WEBUI_BASE_URL } from '$lib/constants';
@ -152,6 +154,7 @@
let showRateComment = false;
const copyToClipboard = async (text) => {
text = removeAllDetails(text);
const res = await _copyToClipboard(text);
if (res) {
toast.success($i18n.t('Copying to clipboard was successful!'));

View File

@ -683,6 +683,11 @@ export const removeDetails = (content, types) => {
return content;
};
export const removeAllDetails = (content) => {
content = content.replace(/<details[^>]*>.*?<\/details>/gis, '');
return content;
};
export const processDetails = (content) => {
content = removeDetails(content, ['reasoning', 'code_interpreter']);