⚠️ Deprecated ⚠️

This feature is deprecated and will be removed in the future.

It is not recommended for use.

  • Import from "@langchain/community/document_loaders/web/serpapi" instead. This entrypoint will be removed in 0.3.0.

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 search results from the SerpAPI.

    Returns Promise<Document[]>

    An array of Documents representing the search results.

    Throws

    An error if the search results could not be loaded.

  • 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