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

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

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

Hierarchy (view full)

Constructors

Methods

  • Parameters

    • Optionalsplitter: BaseDocumentTransformer<DocumentInterface<Record<string, any>>[], DocumentInterface<Record<string, any>>[]>

    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.

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

    Parameters

    • data: Record<string, unknown>

      The response data from the SearchApi search request.

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

    An array of Documents.