LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
  • Overview
    • Overview
    • Caches
    • Callbacks
    • Documents
    • Document loaders
    • Embeddings
    • Exceptions
    • Language models
    • Serialization
    • Output parsers
    • Prompts
    • Rate limiters
    • Retrievers
    • Runnables
    • Utilities
    • Vector stores
    MCP Adapters
    Standard Tests
    Text Splitters
    ⌘I

    LangChain Assistant

    Ask a question to get started

    Enter to send•Shift+Enter new line

    Menu

    OverviewCachesCallbacksDocumentsDocument loadersEmbeddingsExceptionsLanguage modelsSerializationOutput parsersPromptsRate limitersRetrieversRunnablesUtilitiesVector stores
    MCP Adapters
    Standard Tests
    Text Splitters
    Language
    Theme
    Pythonlangchain-coreindexingapiIndexingResult
    Class●Since v0.1

    IndexingResult

    Return a detailed a breakdown of the result of the indexing operation.

    Copy
    IndexingResult()

    Bases

    TypedDict

    Constructors

    constructor
    __init__
    NameType
    num_addedint
    num_updatedint
    num_deletedint
    num_skippedint

    Attributes

    attribute
    num_added: int

    Number of added documents.

    attribute
    num_updated: int

    Number of updated documents because they were not up to date.

    attribute
    num_deleted: int

    Number of deleted documents.

    attribute
    num_skipped: int

    Number of skipped documents because they were already up to date.

    View source on GitHub