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

    SearchItem

    Item with an optional relevance score from search operations.

    Copy
    SearchItem()

    Bases

    Item

    Attributes

    Inherited fromItem

    Attributes

    Anamespace: list[str]
    —

    The namespace of the item. A namespace is analogous to a document's directory.

    Akey: str
    —

    The unique identifier of the item within its namespace.

    Avalue: dict[str, Any]
    —

    The value stored in the item. This is the document itself.

    A
    View source on GitHub
    created_at
    : datetime
    —

    The timestamp when the item was created.

    Aupdated_at: datetime
    —

    The timestamp when the item was last updated.

    attribute
    score: float | None