@Logan M it looks like the docs are wrong:
- [Optional, Advanced] Building indices on top of other indices
You can build indices on top of other indices!
from llama_index import GPTSimpleVectorIndex, GPTListIndex
index1 = GPTSimpleVectorIndex.from_documents(documents1)
index2 = GPTSimpleVectorIndex.from_documents(documents2)
Set summary text
you can set the summary manually, or you can
generate the summary itself using LlamaIndex
index1.set_text("summary1")
index2.set_text("summary2")
index3 = GPTListIndex([index1, index2])
Since set_text no longer exists, how should this work?