I want to create a secondary index (default Vector Store Index) , which will have summarised chunks from the primary index. I need the node_ids in both the indexes to be same so that the context is retrieved from the primary index but the context passed to LLM for generation is from the secondary index. How can i do this , I was trying index.docstore.docs.values() to get the node_ids from primary index but that is not working. @Logan M
But it throws this error : ValueError: Metadata length (1458) is longer than chunk size (1024). Consider increasing the chunk size or decreasing the size of your metadata to avoid this.