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

Example

const loader = new SerpAPILoader({ q: "{query}", apiKey: "{apiKey}" });
const docs = await loader.load();

Hierarchy (view full)

Constructors

Methods

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

    Parameters

    • splitter: TextSplitter = ...

    Returns Promise<Document[]>

    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[]

    An array of Documents.

Generated using TypeDoc