This commit is contained in:
Raven Scott 2023-05-05 18:12:43 +02:00 committed by MrTuxedo
parent 932474ec63
commit f211fe2d67
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ async function generateResponse(conversation, message) {
}
if (pageContent) {
const MAX_CONTENT_LENGTH = process.env.MAX_CONTENT_LENGTH;
let plainTextContent = $('<div>').html(pageContent).text().trim().replace(/[\r\n]+/g, ' ');
let plainTextContent = $('<div>').html(pageContent).text().trim().replace(/[\r\n\t]+/g, ' ');
if (plainTextContent.length > MAX_CONTENT_LENGTH) {
plainTextContent = plainTextContent.substring(0, MAX_CONTENT_LENGTH) + '...';