mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 17:00:15 +01:00
remove detect code (not always accurate)
This commit is contained in:
parent
c27554ed2e
commit
ea4180f22a
1 changed files with 1 additions and 19 deletions
|
|
@ -1,8 +1,6 @@
|
||||||
const _ = require('lodash');
|
const _ = require('lodash');
|
||||||
const sanitizeHtml = require('sanitize-html');
|
|
||||||
const citationRegex = /\[\^\d+?\^]/g;
|
const citationRegex = /\[\^\d+?\^]/g;
|
||||||
const { getCitations, citeText, detectCode } = require('../../app/');
|
const { getCitations, citeText, detectCode } = require('../../app/');
|
||||||
// const htmlTagRegex = /(<\/?\s*[a-zA-Z]*\s*(?:\s+[a-zA-Z]+\s*=\s*(?:"[^"]*"|'[^']*'))*\s*(?:\/?)>|<\s*[a-zA-Z]+\s*(?:\s+[a-zA-Z]+\s*=\s*(?:"[^"]*"|'[^']*'))*\s*(?:\/?>|<\/?>))/g;
|
|
||||||
|
|
||||||
const handleError = (res, message) => {
|
const handleError = (res, message) => {
|
||||||
res.write(`event: error\ndata: ${JSON.stringify(message)}\n\n`);
|
res.write(`event: error\ndata: ${JSON.stringify(message)}\n\n`);
|
||||||
|
|
@ -28,14 +26,6 @@ const createOnProgress = () => {
|
||||||
tokens = tokens.replace(/^\n/, '');
|
tokens = tokens.replace(/^\n/, '');
|
||||||
}
|
}
|
||||||
|
|
||||||
// const htmlTags = tokens.match(htmlTagRegex);
|
|
||||||
// if (tokens.includes('```') && htmlTags && htmlTags.length > 0) {
|
|
||||||
// htmlTags.forEach((tag) => {
|
|
||||||
// const sanitizedTag = sanitizeHtml(tag);
|
|
||||||
// tokens = tokens.replaceAll(tag, sanitizedTag);
|
|
||||||
// });
|
|
||||||
// }
|
|
||||||
|
|
||||||
if (bing) {
|
if (bing) {
|
||||||
tokens = citeText(tokens, true);
|
tokens = citeText(tokens, true);
|
||||||
}
|
}
|
||||||
|
|
@ -54,7 +44,7 @@ const createOnProgress = () => {
|
||||||
|
|
||||||
const handleText = async (response, bing = false) => {
|
const handleText = async (response, bing = false) => {
|
||||||
let { text } = response;
|
let { text } = response;
|
||||||
text = await detectCode(text);
|
// text = await detectCode(text);
|
||||||
response.text = text;
|
response.text = text;
|
||||||
|
|
||||||
if (bing) {
|
if (bing) {
|
||||||
|
|
@ -66,14 +56,6 @@ const handleText = async (response, bing = false) => {
|
||||||
text += links?.length > 0 ? `\n<small>${links}</small>` : '';
|
text += links?.length > 0 ? `\n<small>${links}</small>` : '';
|
||||||
}
|
}
|
||||||
|
|
||||||
// const htmlTags = text.match(htmlTagRegex);
|
|
||||||
// if (text.includes('```') && htmlTags && htmlTags.length > 0) {
|
|
||||||
// htmlTags.forEach((tag) => {
|
|
||||||
// const sanitizedTag = sanitizeHtml(tag);
|
|
||||||
// text = text.replaceAll(tag, sanitizedTag);
|
|
||||||
// });
|
|
||||||
// }
|
|
||||||
|
|
||||||
return text;
|
return text;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue