Find answers from the community

Home
Members
visiblenils
v
visiblenils
Offline, last seen 2 months ago
Joined September 25, 2024
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:

Plain Text
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?
3 comments
k
V