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