The community member's requirement is to generate embeddings only for newly added documents when updating RAG, rather than regenerating embeddings for all documents in the Chroma DB using LlamaIndex. In the comments, another community member suggests using the insert method to add new documents, which will only create embeddings for the newly inserted docs. Additionally, the community members discuss how to remove a document from the index using the delete_ref_doc(ref_doc_id) method, which will delete all nodes associated with that reference document ID.
My Requirement is : When updating RAG, only generate embeddings for newly added documents rather than regenerating embeddings for all documents in chroma db using llamaindex.