🐛 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:
parent
588f0da625
commit
38148677f1
1 changed files with 1 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ class TextSplitterCreator(LangChainTypeCreator):
|
|||
"type": "int",
|
||||
"required": True,
|
||||
"show": True,
|
||||
"value": 4000,
|
||||
"value": 1000,
|
||||
"name": "chunk_size",
|
||||
"display_name": "Chunk Size",
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue