# Create index from document document_name = VectorStoreIndex.from_documents( document, storage_context=storage_context, service_context=service_context, ) # Set summary text for document document_name.index_struct.index_id = document_name
I want to be able to query specific documents instead of the entire index. I implemented metadata filtering, however, my response is none, even though I have checked that the metadata (with an exact match) exists. I have also checked that a response is returned when I remove all filters.