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
⌘I

LangChain Assistant

Ask a question to get started

Enter to send•Shift+Enter new line

Menu

OverviewClientAsyncClientRun HelpersRun TreesEvaluationSchemasUtilitiesWrappersAnonymizerTestingExpect APIMiddlewarePytest PluginDeployment SDK
Language
Theme
PythonlangsmithschemasRunWithAnnotationQueueInfo
Class●Since v0.0

RunWithAnnotationQueueInfo

Run schema with annotation queue info.

Copy
RunWithAnnotationQueueInfo()

Bases

RunBase

Attributes

attribute
last_reviewed_time: Optional[datetime]

The last time this run was reviewed.

attribute
added_at: Optional[datetime]

The time this run was added to the queue.

Inherited fromRunBase

Attributes

Aid: UUID
—

Unique identifier for the run.

Aname: str
—

Human-readable name for the run.

Astart_time: datetime
—

Start time of the run.

Arun_type: str
—

The type of run, such as tool, chain, llm, retriever,

Aend_time: Optional[datetime]
—

End time of the run, if applicable.

Aextra: Optional[dict]
—

Additional metadata or settings related to the run.

Aerror: Optional[str]
—

Error message, if the run encountered any issues.

Aserialized: Optional[dict]
—

Serialized object that executed the run for potential reuse.

Aevents: Optional[list[dict]]
—

List of events associated with the run, like

Ainputs: dict
—

Inputs used for the run.

Aoutputs: Optional[dict]
—

Outputs generated by the run, if any.

Areference_example_id: Optional[UUID]
—

Reference to an example that this run may be based on.

Aparent_run_id: Optional[UUID]
—

Identifier for a parent run, if this run is a sub-run.

Atags: Optional[list[str]]
—

Tags for categorizing or annotating the run.

Aattachments: Union[Attachments, dict[str, AttachmentInfo]]
—

Attachments associated with the run.

Ametadata: dict[str, Any]
—

Retrieve the metadata (if any).

Arevision_id: Optional[UUID]
—

Retrieve the revision ID (if any).

Alatency: Optional[float]
—

Latency in seconds.

Amodel_config
View source on GitHub