LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
  • Overview
  • Client
  • AsyncClient
  • Run Helpers
  • Run Trees
  • Evaluation
  • Schemas
  • Utilities
  • Wrappers
  • Anonymizer
  • Testing
  • Expect API
  • Middleware
  • Pytest Plugin
  • Deployment SDK
  • RemoteGraph
⌘I

LangChain Assistant

Ask a question to get started

Enter to send•Shift+Enter new line

Menu

OverviewClientAsyncClientRun HelpersRun TreesEvaluationSchemasUtilitiesWrappersAnonymizerTestingExpect APIMiddlewarePytest PluginDeployment SDKRemoteGraph
Language
Theme
PythonlangsmithclientClientlist_annotation_queues
Method●Since v0.0

list_annotation_queues

List the annotation queues on the LangSmith API.

Copy
list_annotation_queues(
  self,
  *,
  queue_ids: Optional[list[ID_TYPE]] = None,
  name: Optional[str] = None,
  name_contains: Optional[str] = None,
  limit: Optional[int] = None
) -> Iterator[ls_schemas.AnnotationQueue]

Parameters

NameTypeDescription
queue_idsOptional[List[Union[UUID, str]]]
Default:None

The IDs of the queues to filter by.

nameOptional[str]
Default:None

The name of the queue to filter by.

name_containsOptional[str]
Default:None

The substring that the queue name should contain.

limitOptional[int]
Default:None

The maximum number of queues to return.

View source on GitHub