# update_annotation_queue

> **Method** in `langsmith`

📖 [View in docs](https://reference.langchain.com/python/langsmith/client/Client/update_annotation_queue)

Update an annotation queue with the specified `queue_id`.

## Signature

```python
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

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `queue_id` | `Union[UUID, str]` | Yes | The ID of the annotation queue to update. |
| `name` | `Optional[str]` | No | The new name for the annotation queue. (default: `None`) |
| `description` | `Optional[str]` | No | The new description for the annotation queue. (default: `None`) |
| `rubric_instructions` | `Optional[str]` | No | The new rubric instructions for the annotation queue. (default: `None`) |
| `rubric_items` | `Optional[list[AnnotationQueueRubricItem]]` | No |  The feedback configs to assign to this queue's rubric. (default: `None`) |

## Returns

`None`

None

---

[View source on GitHub](https://github.com/langchain-ai/langsmith-sdk/blob/ce9e9e8973442b33e98ec3ce1b9c2dd3f58a43a7/python/langsmith/client.py#L8320)