🐛 fix(textsplitters.py): change default value of Separator field from "." to "\\n" to correctly split text by newline characters

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-07-10 13:54:46 -03:00
commit 02fc2004e1

View file

@ -45,7 +45,7 @@ class TextSplittersFrontendNode(FrontendNode):
field_type="str",
required=True,
show=True,
value=".",
value="\\n",
name=name,
display_name="Separator",
)