mirror of
https://github.com/open-webui/open-webui
synced 2025-06-23 02:16:52 +00:00
enh: only copy text message content
This commit is contained in:
parent
bdef1001ac
commit
c3497da5dd
@ -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!'));
|
||||
|
@ -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']);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user