Create an annotation queue on the LangSmith API.
create_annotation_queue( self, *, name: str, description: Optional[str] = None, queue_id: Optional[ID_TYPE] = None, rubric_instructions: Optional[str] = None, rubric_items: Optional[list[ls_schemas.AnnotationQueueRubricItem]] = None ) -> ls_schemas.AnnotationQueueWithDetails| Name | Type | Description |
|---|---|---|
name* | str | The name of the annotation queue. |
description | Optional[str] | Default: NoneThe description of the annotation queue. |
queue_id | Optional[Union[UUID, str]] | Default: NoneThe ID of the annotation queue. |
rubric_instructions | Optional[str] | Default: NoneThe rubric instructions for the annotation queue. |
rubric_items | Optional[list[AnnotationQueueRubricItem]] | Default: NoneThe feedback configs to assign to this queue's rubric. Each item specifies a feedback_key and optional per-queue customization like description and value_descriptions. |