One question regarding refreshing an existing vector store.
As far as i can see the normal
VectorStoreIndex
allows to pass in the
show_progress
flag which shows the nice tqdm-like bar when generating the chunks.
I don't see such an option for the
refresh_index
method. Is there a way to show progress there? Would especially be interesting to see how many chunks/what kinds of chunks are being modified/refreshed.
Currently i'm executing it like this and unfortunately i don't see any indication.
storage_context = StorageContext.from_defaults(persist_dir=storage_dir)
index: VectorStoreIndex = load_index_from_storage(storage_context=storage_context)
index.refresh_ref_docs(documents)