Question about Composability . i have 2 GPTPandasIndex , index1 and index2. Then make graph like this graph = ComposableGraph.from_indices( GPTListIndex, [index1, index2], index_summaries=[index_detail_sum, index_sum_sum], max_keywords_per_chunk=100 )
Hi all when i use PandasIndex the same with demo https://github.com/jerryjliu/llama_index/blob/main/examples/struct_indices/PandasIndexDemo.ipynb then i use index.save_to_disk('index_csv.json') it work ok , but when i load it again by index = GPTPandasIndex.load_from_disk('ndex_csv.json') i got error "ValueError: Only one of documents or index_struct can be provided." Anyone get this error ? Thanks