Hello I have a newbie question on working with Pinecone:
So I do:
index = GPTVectorStoreIndex.from_documents( documents, storage_context=storage_context, service_context=service_context )
My question is, if my documents get updated and I run the above code again, does my entire index gets replaced by the new document embeddings, or the new embedding simply gets added to the existing index?
currently the default behavior is upsert. so here the updated documents will be split again, generating new nodes, and those will get added to the same collection in pinecone.