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
⌘I

LangChain Assistant

Ask a question to get started

Enter to send•Shift+Enter new line

Menu

OverviewClientAsyncClientRun HelpersRun TreesEvaluationSchemasUtilitiesWrappersAnonymizerTestingExpect APIMiddlewarePytest PluginDeployment SDK
Language
Theme
PythonlangsmithclientClientlist_annotation_queues
Methodā—Since v0.0

list_annotation_queues

Copy
list_annotation_queues(
  self,
  *,
  queue_ids: Optional[list[ID_TYPE]] = None,
  name
View source on GitHub
:
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
name_containsOptional[str]
Default:None
limitOptional[int]
Default:None

List the annotation queues on the LangSmith API.

The name of the queue to filter by.

The substring that the queue name should contain.

The maximum number of queues to return.