LibreChat / api /app /clients /prompts /truncateText.js
N.Achyuth Reddy
Upload 683 files
9705b6c
raw
history blame contribute delete
211 Bytes
const MAX_CHAR = 255;
function truncateText(text) {
if (text.length > MAX_CHAR) {
return `${text.slice(0, MAX_CHAR)}... [text truncated for brevity]`;
}
return text;
}
module.exports = truncateText;