mirror of
https://github.com/open-webui/open-webui
synced 2024-11-07 09:09:53 +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
|
||||
let sentences = text.match(/[^.?!]+[.!?]+[\])'"`’”]*|.+/g);
|
||||
let sentences = text.split(/(?<=[.!?])\s+/);
|
||||
|
||||
// Restore code blocks and process sentences
|
||||
sentences = sentences.map((sentence) => {
|
||||
|
Loading…
Reference in New Issue
Block a user