python/src/tablestore_for_agent_memory/base/base_knowledge_store.py [136:154]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                         tenant_id: Optional[Union[List[str], str]] = None,
                         metadata_filter: Optional[Filter] = None,
                         limit: Optional[int] = Field(default=100, le=1000, ge=1),
                         next_token: Optional[str] = None,
                         meta_data_to_get: Optional[List[str]] = None,
                         **kwargs: Any,
                         ) -> Response[DocumentHit]:
        """
        Search Documents.
        :param tenant_id: tenant id.
        :param metadata_filter: metadata filter condition.
        :param limit: number of rows returned per call.
        :param next_token: token for next pagination.
        :param meta_data_to_get: fields of meta_data to return. By default, only specified meta fields during index creation are returned; specify additional fields here if needed.
        """
        pass

    @validate_call
    @abstractmethod
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



python/src/tablestore_for_agent_memory/base/base_knowledge_store.py [157:177]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                         tenant_id: Optional[Union[List[str], str]] = None,
                         metadata_filter: Optional[Filter] = None,
                         limit: Optional[int] = Field(default=100, le=1000, ge=1),
                         next_token: Optional[str] = None,
                         meta_data_to_get: Optional[List[str]] = None,
                         **kwargs: Any,
                         ) -> Response[DocumentHit]:
        """
        Perform a full-text search on the text content of Document.
        :param query: text content to be queried input by the user
        :param tenant_id: tenant id.
        :param metadata_filter: metadata filter condition.
        :param limit: number of rows returned per call.
        :param next_token: token for next pagination
        :param meta_data_to_get: fields of meta_data to return. By default, only specified meta fields during index creation are returned; specify additional fields here if needed.
        :rtype: (list of documents, token for next access)
        """
        pass

    @validate_call
    @abstractmethod
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



