Why is it not possible to apply filters to DocumentSummaryIndex?
I want to query things related to a specific document doing
doc_summary_retriever = doc_summary_index.as_retriever(filters=filters)
but the retriever ignores my filters... I saw that the retrievers for this do not pass the kwargs to the suoer().
init function
This for example is how the
DocumentSummaryIndexLLMRetriever
looks like
super().__init__(
callback_manager=callback_manager or Settings.callback_manager,
object_map=object_map,
verbose=verbose,
)