I seem to be having an issue when creating the 'GPTDeepLakeIndex'. When following the notebook
https://github.com/jerryjliu/llama_index/blob/main/examples/vector_indices/DeepLakeIndexDemo.ipynb/, I am calling it like this
index = GPTDeepLakeIndex.from_documents(product_name_docs,service_context=service_context, dataset_path='productname', overwrite=True)
where product_name_docs is valid and the call
index=GPTSimpleVectorIndex.from_documents(product_name_docs,service_context=service_context)
works without issues. Also the Dataset is created and everything, the Error message
ValueError: nodes must be a list of Node objects.
Does anyone have an uptodate example or knows why?