module documentation

Undocumented

Function find_documents_by_metadata Finds all documents in the catalog that have a specific metadata attribute containing a specific value.
def find_documents_by_metadata(attribute: str, value: str) -> list[dict]: ΒΆ

Finds all documents in the catalog that have a specific metadata attribute containing a specific value. Args: attribute (str): The metadata attribute to search for. value (str): The value to search for within the attribute. Returns: list[dict]: A list of documents that match the criteria. Raises: RegisterError: If there is an error during the search.