class SerpAPILoaderClass representing a document loader for loading search results from the SerpAPI. It extends the BaseDocumentLoader class.
Builds the URL for the SerpAPI search request.
Loads the search results from the SerpAPI.
Processes the response data from the SerpAPI search request and converts it into an array of Documents.
const loader = new SerpAPILoader({ q: "{query}", apiKey: "{apiKey}" });
const docs = await loader.load();