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
Pythonlangsmithasync_clientAsyncClientupdate_annotation_queue
Method●Since v0.3

update_annotation_queue

Update an annotation queue with the specified queue_id.

Copy
update_annotation_queue(
  self,
  queue_id: ID_TYPE,
  *,
  name: Optional[str] = None,
  description: Optional[str] = None,
  rubric_instructions: Optional[str] = None,
  rubric_items: Optional[list[ls_schemas.AnnotationQueueRubricItem]] = None
) -> None

Parameters

NameTypeDescription
queue_id*Union[UUID, str]

The ID of the annotation queue to update.

nameOptional[str]
Default:None

The new name for the annotation queue.

descriptionOptional[str]
Default:None

The new description for the annotation queue.

rubric_instructionsOptional[str]
Default:None

The new rubric instructions for the queue.

rubric_itemsOptional[list[ls_schemas.AnnotationQueueRubricItem]]
Default:None

The feedback configs to assign to this queue's rubric.

View source on GitHub