LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
  • Overview
  • LangGraph Checkpoint
    LangGraph Store
    Checkpoint Postgres
    Store Postgres
    Checkpoint SQLite
    LangGraph Prebuilt
    LangGraph CLI
    LangGraph SDK
    LangGraph Supervisor
    LangGraph Swarm
    ⌘I

    LangChain Assistant

    Ask a question to get started

    Enter to send•Shift+Enter new line

    Menu

    LangGraph Checkpoint
    LangGraph Store
    Checkpoint Postgres
    Store Postgres
    Checkpoint SQLite
    LangGraph Prebuilt
    LangGraph CLI
    LangGraph SDK
    LangGraph Supervisor
    LangGraph Swarm
    Language
    Theme
    Pythonlanggraph.storebaseItem
    Class●Since v1.0

    Item

    Represents a stored item with metadata.

    Copy
    Item(
      self,
      *,
      value: dict[str, Any],
      key: str,
      namespace: tuple[str, ...],
      created_at: datetime,
      updated_at: datetime
    )

    Parameters

    NameTypeDescription
    value*dict[str, Any]

    The stored data as a dictionary. Keys are filterable.

    key*str

    Unique identifier within the namespace.

    namespace*tuple[str, ...]

    Hierarchical path defining the collection in which this document resides. Represented as a tuple of strings, allowing for nested categorization. For example: ("documents", 'user123')

    created_at*datetime

    Timestamp of item creation.

    updated_at*datetime

    Timestamp of last update.

    Constructors

    constructor
    __init__
    NameType
    valuedict[str, Any]
    keystr
    namespacetuple[str, ...]
    created_atdatetime
    updated_atdatetime

    Attributes

    attribute
    value: value
    attribute
    key: key
    attribute
    namespace
    attribute
    created_at
    attribute
    updated_at

    Methods

    method
    dict
    View source on GitHub