Not sure what the exact issue is here π€
Modifying the chunk size is pretty easy
(Minor size discrepancy, maybe due to spaces)
>>> from llama_index import Document
>>> from llama_index.node_parser import SimpleNodeParser
>>> node_parser = SimpleNodeParser.from_defaults(chunk_size=3000)
>>> nodes = node_parser.get_nodes_from_documents([Document.example()])
>>> len(nodes[0].text)
1290
>>> len(Document.example().text)
1292
>>> node_parser = SimpleNodeParser.from_defaults(chunk_size=100)
>>> nodes = node_parser.get_nodes_from_documents([Document.example()])
>>> len(nodes[0].text)
341
>>>