Update an annotation queue with the specified queue_id.
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| Name | Type | Description |
|---|---|---|
queue_id* | Union[UUID, str] | The ID of the annotation queue to update. |
name | Optional[str] | Default: NoneThe new name for the annotation queue. |
description | Optional[str] | Default: NoneThe new description for the annotation queue. |
rubric_instructions | Optional[str] | Default: NoneThe new rubric instructions for the queue. |
rubric_items | Optional[list[ls_schemas.AnnotationQueueRubricItem]] | Default: NoneThe feedback configs to assign to this queue's rubric. |