🐛 fix(base.py): decrease default chunk size from 4000 to 1000

The default chunk size for text splitting has been decreased from 4000 to 1000 to improve performance and reduce memory usage.
This commit is contained in:
Gabriel Almeida 2023-05-30 16:15:30 -03:00
commit 38148677f1

View file

@ -39,7 +39,7 @@ class TextSplitterCreator(LangChainTypeCreator):
"type": "int",
"required": True,
"show": True,
"value": 4000,
"value": 1000,
"name": "chunk_size",
"display_name": "Chunk Size",
}