Find answers from the community

Home
Members
Deeds67
D
Deeds67
Offline, last seen 3 months ago
Joined September 25, 2024
No worries, managed to figure it out!:

Plain Text
        return VectorIndexRetriever(
            index=index,
            similarity_top_k=similarity_top_k,
            doc_ids=context_filter.docs_ids if context_filter else None,
            filters=MetadataFilters(filters = [ExactMatchFilter(key=file_name,value=file_name)]),
        )
1 comment
L
Newbie question: Why is it necessary to have both a "Document store", as well as a "Vector store"? When I look at the data contained inside of my vector store, it looks like it contains all of the node content that are also stored inside of the document store.
5 comments
L
W
D