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
PythonlangsmithclientClientlist_shared_projects
Methodā—Since v0.0

list_shared_projects

Copy
list_shared_projects(
  self,
  *,
  dataset_share_token: str,
  project_ids: Optional[list[ID_TYPE
View source on GitHub
]
]
=
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
nameOptional[str]
Default:None
name_containsOptional[str]
Default:None
limitOptional[int]
Default:None

List shared projects.

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

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

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

Maximum number of projects to return, by default None.