Explorar el Código

fix text split (#15426)

tags/1.0.1
Jyong hace 7 meses
padre
commit
f77f7e1437
No account linked to committer's email address
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. 4
    1
      api/core/rag/splitter/fixed_text_splitter.py

+ 4
- 1
api/core/rag/splitter/fixed_text_splitter.py Ver fichero

@@ -88,7 +88,10 @@ class FixedRecursiveCharacterTextSplitter(EnhanceRecursiveCharacterTextSplitter)
break
# Now that we have the separator, split the text
if separator:
splits = text.split(separator)
if separator == " ":
splits = text.split()
else:
splits = text.split(separator)
else:
splits = list(text)
# Now go merging things, recursively splitting longer texts.

Cargando…
Cancelar
Guardar