Gets the collection.
get(
self,
ids: Optional[OneOrMany[ID]] = None,
where: Optional[Where] = None,
limit: Optional[int] = None,
offset: Optional[int] = None,
where_document: Optional[WhereDocument] = None,
include: Optional[List[str]] = None
) -> Dict[str, Any]| Name | Type | Description |
|---|---|---|
ids | Optional[OneOrMany[ID]] | Default: NoneThe ids of the embeddings to get. Optional. |
where | Optional[Where] | Default: NoneA Where type dict used to filter results by.
E.g. |
limit | Optional[int] | Default: NoneThe number of documents to return. Optional. |
offset | Optional[int] | Default: NoneThe offset to start returning results from. Useful for paging results with limit. Optional. |
where_document | Optional[WhereDocument] | Default: NoneA WhereDocument type dict used to filter by the documents.
E.g. |
include | Optional[List[str]] | Default: NoneA list of what to include in the results.
Can contain |