index = GPTVectorStoreIndex.from_documents( documents, service_context=get_service_context() )
index.refresh(documents)
is all it should take after loading your saved indexindex.update(document)
for a single document (again, that assumes the doc ids are consistent)