docs/how_to/indexing/ #27576
Replies: 4 comments 3 replies
-
Thank you for this. I tried getting this to work with a local FAISS store. However this document does not cover any definitive way to delete a single Document from the Vector Store. I can't find any links in the langchain pages on deleting a document that has been added to the Vector store using the indexing method specified here. The main challenge is that when we retrieve documents from the Vector store they do not have any Ids. |
Beta Was this translation helpful? Give feedback.
-
How does it work with ParentDocumentRetriever? Can it help in managing parent documents? |
Beta Was this translation helpful? Give feedback.
-
I want to report issue with index when using RedisVectorStore
|
Beta Was this translation helpful? Give feedback.
-
This solution is interesting but what if your original document directory has thousands of documents and you only want to process the ones that have changed in source and not after processing? The ideal thing here would be to first select the documents you know have changed and then load them and use the incremental index. However, this wouldn't allow you to delete documents that have been eliminated from source. It would be great to have some way of indexing both the vector store and the original document directory (my example is in S3) so that the whole document lifecycle is managed. |
Beta Was this translation helpful? Give feedback.
-
docs/how_to/indexing/
Here, we will look at a basic indexing workflow using the LangChain indexing API.
https://python.langchain.com/docs/how_to/indexing/
Beta Was this translation helpful? Give feedback.
All reactions