mirror of
https://github.com/open-webui/open-webui
synced 2025-01-30 14:29:55 +00:00
revert: text split
This commit is contained in:
parent
7212b7c8aa
commit
6d350fb8bc
@ -525,7 +525,7 @@ export const extractSentences = (text) => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Split the modified text into sentences based on common punctuation marks, avoiding these blocks
|
// Split the modified text into sentences based on common punctuation marks, avoiding these blocks
|
||||||
let sentences = text.match(/[^.?!]+[.!?]+[\])'"`’”]*|.+/g);
|
let sentences = text.split(/(?<=[.!?])\s+/);
|
||||||
|
|
||||||
// Restore code blocks and process sentences
|
// Restore code blocks and process sentences
|
||||||
sentences = sentences.map((sentence) => {
|
sentences = sentences.map((sentence) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user