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
PythonlangsmithclientClientlist_shared_projects
Method●Since v0.0

list_shared_projects

List shared projects.

Copy
list_shared_projects(
  self,
  *,
  dataset_share_token: str,
  project_ids: Optional[list[ID_TYPE]] = None,
  name: Optional[str] = None,
  name_contains: Optional[str] = None,
  limit: Optional[int] = None
) -> Iterator[ls_schemas.TracerSessionResult]

Parameters

NameTypeDescription
dataset_share_token*str

The share token of the dataset.

project_idsOptional[List[Union[UUID, str]]]
Default:None

List of project IDs to filter the results, by default None.

nameOptional[str]
Default:None

Name of the project to filter the results, by default None.

name_containsOptional[str]
Default:None

Substring to search for in project names, by default None.

limitOptional[int]
Default:None

Maximum number of projects to return, by default None.

View source on GitHub