@WhiteFang_Jr
Suppose we have a third-party vector store such as Chroma or Qdrant. How can we add a new document to an existing collection in the store? Currently, I am building the index from the existing collection and then adding the new documents to the index. Is this the best approach, or is there a better way to accomplish this?
splitter = SentenceSplitter(chunk_size=1024, chunk_overlap=128)
nodes = splitter(docs)
index.insert_nodes(nodes=nodes)