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

ListedPromptCommit

Represents a listed prompt commit with associated metadata.

Copy
ListedPromptCommit()

Bases

BaseModel

Attributes

attribute
id: UUID

The unique identifier for the prompt commit.

attribute
owner: str

The owner of the prompt commit.

attribute
repo: str

The repository name of the prompt commit.

attribute
manifest_id: Optional[UUID]

The optional identifier for the manifest associated with this commit.

attribute
repo_id: Optional[UUID]

The optional identifier for the repository.

attribute
parent_id: Optional[UUID]

The optional identifier for the parent commit.

attribute
commit_hash: Optional[str]

The optional hash of the commit.

attribute
created_at: Optional[datetime]

The optional timestamp when the commit was created.

attribute
updated_at: Optional[datetime]

The optional timestamp when the commit was last updated.

attribute
example_run_ids: Optional[list[UUID]]

A list of example run identifiers associated with this commit.

attribute
num_downloads: Optional[int]

The number of times this commit has been downloaded.

attribute
num_views: Optional[int]

The number of times this commit has been viewed.

attribute
parent_commit_hash: Optional[str]

The optional hash of the parent commit.

View source on GitHub