I'm trying to build an index with very small nodes, first tried to insert manually but running into some issues building the index so thought I'd try a much simpler approach, like this:
documents = SimpleDirectoryReader('data').load_data()
index = GPTSimpleVectorIndex.from_documents(documents, chunk_size_limit=64)
index.save_to_disk('index_list.json')
But getting
TypeError: BaseGPTIndex.__init__() got an unexpected keyword argument 'chunk_size_limit'
when trying to run it, has that changed recently?