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
PythonlangsmithclientClientread_shared_run
Method●Since v0.1

read_shared_run

Get shared runs.

Copy
read_shared_run(
  self,
  share_token: Union[ID_TYPE, str],
  run_id: Optional[ID_TYPE] = None
) -> ls_schemas.Run

Parameters

NameTypeDescription
share_token*Union[UUID, str]

The share token or URL of the shared run.

run_idOptional[Union[UUID, str]]
Default:None

The ID of the specific run to retrieve. If not provided, the full shared run will be returned.

View source on GitHub