Find answers from the community

Updated 7 months ago

Hey all, I know when I run `index =

Hey all, I know when I run 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.
L
1 comment
probably I would process one at a time

Plain Text
index = VectorStoreIndex.from_documents([])

for doc in documents:
  index.insert(doc)
Add a reply
Sign up and join the conversation on Discord