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
PythonlangsmithschemasAnnotationQueueRubricItem
Class●Since v0.7

AnnotationQueueRubricItem

Represents a rubric item assigned to an annotation queue.

Links a feedback config to a queue with optional per-queue customization.

Copy
AnnotationQueueRubricItem()

Bases

TypedDict

Constructors

constructor
__init__
NameType
feedback_keystr
descriptionOptional[str]
value_descriptionsOptional[dict[str, str]]
score_descriptionsOptional[dict[str, str]]
is_requiredOptional[bool]

Attributes

attribute
feedback_key: str

The feedback key to include in this queue's rubric.

attribute
description: Optional[str]

Instructions for annotators on how to evaluate this item.

attribute
value_descriptions: Optional[dict[str, str]]

Display text for categorical feedback values.

attribute
score_descriptions: Optional[dict[str, str]]

Display text for score ranges.

attribute
is_required: Optional[bool]

Whether feedback for this rubric item is required before submission.

View source on GitHub