Hi Is there any complete doc regarding structural hierarchical retriever? Is it mandatory to have meta data filters? any document regarding metadata filter would be useful.
vector_store_info = VectorStoreInfo( content_info="brief biography of celebrities", metadata_info=[ MetadataInfo( name="category", type="str", description=( "Category of the celebrity, one of [Sports, Entertainment," " Business, Music]" ), ), MetadataInfo( name="country", type="str", description=( "Country of the celebrity, one of [United States, Barbados," " Portugal]" ), ), ], )
in the above case if I didnt specify any metadata filter , will it used for the retriever or not ,please clarify.