LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
  • Overview
  • LangGraph Checkpoint
    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
    Checkpoint Postgres
    Store Postgres
    Checkpoint SQLite
    LangGraph Prebuilt
    LangGraph CLI
    LangGraph SDK
    LangGraph Supervisor
    LangGraph Swarm
    Language
    Theme
    Pythonlanggraph-sdkauthtypesStorePut
    Class●Since v0.1

    StorePut

    Copy
    StorePut()

    Bases

    typing.TypedDict

    Constructors

    Attributes

    View source on GitHub
    constructor
    __init__
    NameType
    namespacetuple[str, ...]
    keystr
    valuedict[str, typing.Any] | None
    indextyping.Literal[False] | list[str] | None
    attribute
    namespace: tuple[str, ...]

    Hierarchical path that identifies the location of the item.

    Auth handlers can modify this to enforce per-user scoping.

    attribute
    key: str

    Unique identifier for the item within its namespace.

    attribute
    value: dict[str, typing.Any] | None

    The data to store, or None to mark the item for deletion.

    attribute
    index: typing.Literal[False] | list[str] | None

    Optional index configuration for full-text search.

    Operation to store, update, or delete an item in the store.

    This dict is mutable — auth handlers can modify namespace to enforce access scoping (e.g., prepending the user's identity).