KeyError: 128
when using https://github.com/run-llama/llama_docs_bot/, see https://github.com/run-llama/llama_docs_bot/issues/2node_parser = HierarchicalNodeParser.from_defaults( chunk_sizes=[ large_chunk_size, large_chunk_size // 3, ], text_splitter_ids=[ large_chunk_size, large_chunk_size // 3, ], )
KeyError: '128'
node_parser = HierarchicalNodeParser.from_defaults( chunk_sizes=[ large_chunk_size, large_chunk_size // 3, ] )
(llama-index) loganm@gamingpc:~/llama_index_proper/llama_index$ pip show llama_index Name: llama-index Version: 0.8.29.post1 ... (llama-index) loganm@gamingpc:~/llama_index_proper/llama_index$ python Python 3.11.0 (main, Mar 1 2023, 18:26:19) [GCC 11.2.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> from llama_index.node_parser import HierarchicalNodeParser >>> large_chunk_size=2048 >>> node_parser = HierarchicalNodeParser.from_defaults( ... chunk_sizes=[ ... large_chunk_size, ... large_chunk_size // 3, ... ] ... ) >>>