langsmith.client.Client.list_annotation_queues#

Client.list_annotation_queues(*, queue_ids: List[UUID | str] | None = None, name: str | None = None, name_contains: str | None = None, limit: int | None = None) Iterator[AnnotationQueue][source]#

List the annotation queues on the LangSmith API.

Parameters:
  • queue_ids (List[UUID | str] | None) – List[str or UUID] or None, default=None The IDs of the queues to filter by.

  • name (str | None) – str or None, default=None The name of the queue to filter by.

  • name_contains (str | None) – str or None, default=None The substring that the queue name should contain.

  • limit (int | None) – int or None, default=None

Yields:
AnnotationQueue

The annotation queues.

Return type:

Iterator[AnnotationQueue]