Class representing a document loader for loading search results from the SerpAPI. It extends the BaseDocumentLoader class.

Hierarchy

Constructors

Methods

  • Builds the URL for the SerpAPI search request.

    Returns string

    The URL for the search request.

  • Loads the search results from the SerpAPI.

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

    An array of Documents representing the search results.

    Throws

    An error if the search results could not be loaded.

  • Loads the documents and splits them using a specified text splitter.

    Parameters

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

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

  • Processes the response data from the SerpAPI search request and converts it into an array of Documents.

    Parameters

    • data: Record<string, unknown>

      The response data from the SerpAPI search request.

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

    An array of Documents.

Generated using TypeDoc