index = VectorStoreIndex.from_documents(documents)
I can show_progress
, but that just shows the node's progress. Is it possible to print
one of the fields/metadata fields so I can see what file/node is being processed? I have a file that is causing failures but not sure what it is, and turning on full logging I couldn't find it.index = VectorStoreIndex.from_documents([]) for doc in documents: index.insert(doc)