Return docs according ids.
get(
self,
ids: Optional[List[str]] = None,
text_in_page_content: Optional[str] = None,
meta_filter: Optional[dict] = None,
not_include_fields: Optional[Set[str]] = None,
limit: Optional[int] = None,
**kwargs: Any = {}
) -> Dict[str, Document]| Name | Type | Description |
|---|---|---|
ids | Optional[List[str]] | Default: NoneThe ids of the embedding vectors. |
text_in_page_content | Optional[str] | Default: NoneFilter by the text in page_content of Document. |
meta_filter | Optional[dict] | Default: NoneFilter by any metadata of the document. |
not_include_fields | Optional[Set[str]] | Default: NoneNot pack the specified fields of each document. |
limit | Optional[int] | Default: NoneThe number of documents to return. Defaults to 5. Optional. |