langchain.js
    Preparing search index...

    Abstract class that provides a default implementation for the loadAndSplit() method from the DocumentLoader interface. The load() method is left abstract and needs to be implemented by subclasses.

    Hierarchy (View Summary)

    Implements

    Index

    Constructors

    Methods

    Constructors

    Methods

    • Loads the documents.

      Returns Promise<Document<Record<string, any>>[]>

      A Promise that resolves with an array of Document instances.

    • Parameters

      Returns Promise<Document<Record<string, any>>[]>

      A Promise that resolves with an array of Document instances, each split according to the provided TextSplitter.

      Use this.load() and splitter.splitDocuments() individually. Loads the documents and splits them using a specified text splitter.