@ -88,6 +88,9 @@ class FixedRecursiveCharacterTextSplitter(EnhanceRecursiveCharacterTextSplitter)
break
# Now that we have the separator, split the text
if separator:
if separator == " ":
splits = text.split()
else:
splits = text.split(separator)
splits = list(text)